greeting('Hello '.$this->user->name.'!') ->line('You are receiving this email because an account has been created for you on '.config('app.name').'.') ->line('Username: '.$this->user->username) ->line('Email: '.$this->user->email); if (!is_null($this->token)) { return $message->action('Setup Your Account', url('/auth/password/reset/'.$this->token.'?email='.urlencode($this->user->email))); } return $message; } }