From f063d00a054df9cef97cdae7deb08856bab8a289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Wed, 11 Oct 2023 14:12:13 +0300 Subject: [PATCH] added feature secret email (bcc) --- app/Abstracts/Notification.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Abstracts/Notification.php b/app/Abstracts/Notification.php index 196e2a917..a9ab9aabf 100644 --- a/app/Abstracts/Notification.php +++ b/app/Abstracts/Notification.php @@ -54,6 +54,10 @@ abstract class Notification extends BaseNotification implements ShouldQueue if (!empty($this->custom_mail['cc'])) { $message->cc($this->custom_mail['cc']); } + + if (!empty($this->custom_mail['bcc'])) { + $message->bcc($this->custom_mail['bcc']); + } return $message; }