resetLink = $resetLink; $this->siteEmail = config('mail.from.address'); $this->siteTitle = config('app.name'); } /** * Build the message. * * @return $this * * @throws \Exception */ public function build() { return $this->from($this->siteEmail)->subject('Forgotten password reset')->view('emails.forgottenPassword')->with(['resetLink' => $this->resetLink, 'site' => $this->siteTitle]); } }