company = $company; } /** * Build the message. * * @return $this */ public function build() { $this->settings = $this->company->settings; $this->logo = $this->company->present()->logo(); $this->title = ctrans('texts.email_quota_exceeded_subject'); $this->body = ctrans('texts.email_quota_exceeded_body', ['quota' => $this->company->account->getDailyEmailLimit()]); $this->whitelabel = $this->company->account->isPaid(); $this->replyTo('contact@invoiceninja.com', 'Contact'); return $this->from(config('mail.from.address'), config('mail.from.name')) ->subject(ctrans('texts.email_quota_exceeded_subject')) ->view('email.admin.email_quota_exceeded'); } }