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