email = $user->email; $this->resetLink = $resetLink; } /** * Execute the job. * * @return void */ public function handle() { Mail::to($this->email)->send(new ForgottenPassword($this->resetLink)); } }