From cb676fc0218797f19f9f5d205a4f405bbfd69880 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 11 Jan 2017 15:59:48 +0200 Subject: [PATCH] Support bulk emailing --- app/Ninja/Mailers/Mailer.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Ninja/Mailers/Mailer.php b/app/Ninja/Mailers/Mailer.php index 12d28c7d7bdb..2f5545e67bc6 100644 --- a/app/Ninja/Mailers/Mailer.php +++ b/app/Ninja/Mailers/Mailer.php @@ -108,6 +108,8 @@ class Mailer if (! $response) { $error = trans('texts.postmark_error', ['link' => link_to('https://status.postmarkapp.com/')]); Utils::logError($error); + + // TODO throw the exception once all emails are sent using the queue return $error; }