From 4a262d00ab48e9512bf7ac942bccaf53750f505e Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 11 Jul 2022 11:21:01 +1000 Subject: [PATCH] Silence bounce notifications --- app/Jobs/PostMark/ProcessPostmarkWebhook.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/PostMark/ProcessPostmarkWebhook.php b/app/Jobs/PostMark/ProcessPostmarkWebhook.php index 57c958ba5e89..64b590ad0917 100644 --- a/app/Jobs/PostMark/ProcessPostmarkWebhook.php +++ b/app/Jobs/PostMark/ProcessPostmarkWebhook.php @@ -220,8 +220,8 @@ class ProcessPostmarkWebhook implements ShouldQueue SystemLogger::dispatch($this->request, SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_BOUNCED, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client, $this->invitation->company); - if(config('ninja.notification.slack')) - $this->invitation->company->notification(new EmailBounceNotification($this->invitation->company->account))->ninja(); + // if(config('ninja.notification.slack')) + // $this->invitation->company->notification(new EmailBounceNotification($this->invitation->company->account))->ninja(); }