contact = $contact; $this->user = $user; } /** * Build the message. * * @return $this */ public function build() { App::setLocale($this->user->locale); return $this->text('emails.reminder.stayintouch') ->subject(trans('mail.stay_in_touch_subject_line', ['name' => $this->contact->getCompleteName($this->user->name_order)])) ->with([ 'contact' => $this->contact, 'user' => $this->user, ]); } }