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