user = $user; $this->siteEmail = config('mail.from.address'); $this->siteTitle = config('app.name'); } /** * @return $this * @throws \Exception */ public function build() { return $this->from($this->siteEmail)->subject('User Account Deleted')->view('emails.accountDelete')->with(['username' => $this->user->username, 'site' => $this->siteTitle]); } }