Fixes for Gmail BCC
This commit is contained in:
parent
752122cbc6
commit
dbfb4069f7
1 changed files with 3 additions and 1 deletions
|
|
@ -60,7 +60,9 @@ class GmailTransport extends Transport
|
|||
$this->gmail->message($message->getBody());
|
||||
|
||||
$this->gmail->cc($message->getCc());
|
||||
$this->gmail->bcc(array_keys($message->getBcc()));
|
||||
|
||||
if(is_array($message->getBcc()))
|
||||
$this->gmail->bcc(array_keys($message->getBcc()));
|
||||
|
||||
foreach ($message->getChildren() as $child)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue