change = $change; } /** * Build the message. * * @return MailMessage */ public function build() { $user = User::findOrFail($this->change->user_id); return (new MailMessage) ->subject('Change Email') ->line('Dear '.$user->firstname.',') ->line('Press the button bellow if you wish to change your current email-address') ->action('Change Email', url('/change/email/'.$user->id.'/'.$this->change->token.'/'.$this->change->email)) ->line('Is this email not directed to you or do you not wish to change your email? Than you may ignore this.'); } }