added feature secret email (bcc)

This commit is contained in:
Cihan Şentürk 2023-10-11 14:12:13 +03:00 committed by GitHub
parent 39aba3a14f
commit f063d00a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

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