diff --git a/app/Notifications/Channels/EmailChannel.php b/app/Notifications/Channels/EmailChannel.php index 82fc9a65c..99afcf5a7 100644 --- a/app/Notifications/Channels/EmailChannel.php +++ b/app/Notifications/Channels/EmailChannel.php @@ -29,6 +29,10 @@ class EmailChannel ->html((string)$mailMessage->render()) ); } catch (Exception $e) { + $error = $e->getMessage(); + if ($error === 'No email settings found.') { + throw $e; + } ray($e->getMessage()); $message = "EmailChannel error: {$e->getMessage()}. Failed to send email to:"; if (isset($recepients)) {