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; }