shopping_order = $shopping_order; $this->subject = 'Rechnung zu Deiner Bestellung: '.$shopping_order->getLastShoppingPayment('reference') ; } public function build() { $title = __('email.invoice_title'); $copy1line = __('email.invoice_copy1line').$this->shopping_order->getLastShoppingPayment('reference'); $filename = Invoice::getFilename($this->shopping_order); $path = Invoice::getDownloadPath($this->shopping_order); if (!Storage::disk('public')->exists($path)) { return; } $file = Storage::disk('public')->path($path); $mime = Storage::disk('public')->mimeType($path); return $this->view('emails.blank')->with([ 'title' => $title, 'copy1line' => $copy1line, ])->attach($file,[ 'as' => $filename, 'mime' => $mime, ]); // attach file; } }