fixes for BCC
This commit is contained in:
parent
e08e375d98
commit
d18e1d7436
1 changed files with 3 additions and 4 deletions
|
|
@ -79,10 +79,9 @@ class NinjaMailerJob implements ShouldQueue
|
|||
|
||||
}
|
||||
|
||||
if (strlen($settings->bcc_email) > 1) {
|
||||
$this->nmo->mailable->bcc($settings->bcc_email, $settings->bcc_email);
|
||||
}
|
||||
|
||||
if (strlen($this->nmo->settings->bcc_email) > 1)
|
||||
$this->nmo->mailable->bcc($this->nmo->settings->bcc_email, $this->nmo->settings->bcc_email);
|
||||
|
||||
|
||||
//send email
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue