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