Merge pull request #6114 from turbo124/v5-develop

Fixes for Gmail BCC
This commit is contained in:
David Bomba 2021-06-23 15:13:52 +10:00 committed by GitHub
commit f6c9a3a6a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,8 @@ class GmailTransport extends Transport
$this->gmail->message($message->getBody());
$this->gmail->cc($message->getCc());
if(is_array($message->getBcc()))
$this->gmail->bcc(array_keys($message->getBcc()));
foreach ($message->getChildren() as $child)