company->getLocale()); $mailable = $this->from(config('mail.from.address'), config('mail.from.name')) ->subject(ctrans('texts.download_files')) ->text('email.admin.download_report_text') ->view('email.admin.download_report', [ 'logo' => $this->company->present()->logo, 'whitelabel' => $this->company->account->isPaid() ? true : false, 'settings' => $this->company->settings, 'greeting' => $this->company->present()->name(), ]); foreach ($this->files as $file) { $mailable->attachData(base64_decode($file['file']), $file['file_name'], ['mime' => $file['mime']]); } return $mailable; } }