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