company = $company; $this->url = $url; } /** * Build the message. * * @return $this */ public function build() { App::setLocale($this->company->getLocale()); return $this ->subject(ctrans('texts.ach_verification_notification_label')) ->text('email.gateways.ach-verification-notification_text') ->view('email.gateways.ach-verification-notification', [ 'logo' => $this->company->present()->logo(), 'settings' => $this->company->settings, 'company' => $this->company, ]); } }