added feature secret email (bcc)
This commit is contained in:
parent
39aba3a14f
commit
f063d00a05
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue