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