senderName = $senderName; $this->senderAddress = $senderAddress; } /** * Build the message. * * @return $this */ public function build() { $subject = trans('email.test_email_subject', ['app_name' => UserConfig::get('app_name')]); return $this->from($this->senderAddress, $this->senderName) ->subject($subject) ->view(Theme::viewName('email.test_email')) ->with(['subject' => $subject]); } }