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