file_path = $file_path; $this->company = $company; } /** * Build the message. * * @return $this */ public function build() { return $this->subject(ctrans('texts.download_files')) ->markdown( 'email.admin.download_files', [ 'url' => $this->file_path, 'logo' => $this->company->present()->logo, ] ); // return $this->from(config('mail.from.address')) //todo this needs to be fixed to handle the hosted version // ->subject(ctrans('texts.download_documents',['size'=>''])) // ->markdown('email.admin.download_files', [ // 'file_path' => $this->file_path // ]); } }