diff --git a/app/Jobs/UserNotificationDigest.php b/app/Jobs/UserNotificationDigest.php index 35116f4d612..b21e00a1b29 100644 --- a/app/Jobs/UserNotificationDigest.php +++ b/app/Jobs/UserNotificationDigest.php @@ -49,7 +49,7 @@ public function handle() } // TODO: catch and log errors? - Mail::to($this->user)->sendNow(new UserNotificationDigestMail($notifications, $this->user)); + Mail::to($this->user)->send(new UserNotificationDigestMail($notifications, $this->user)); } private function filterNotifications(Collection $notifications)