commit
d98bf747f7
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ class GmailTransport extends Transport
|
|||
$this->gmail = null;
|
||||
$this->gmail = new Mail;
|
||||
|
||||
nlog($message->getBcc());
|
||||
nlog(array_keys($message->getBcc()));
|
||||
|
||||
/*We should nest the token in the message and then discard it as needed*/
|
||||
$token = $message->getHeaders()->get('GmailToken')->getValue();
|
||||
|
|
@ -62,7 +62,7 @@ class GmailTransport extends Transport
|
|||
$this->gmail->message($message->getBody());
|
||||
|
||||
$this->gmail->cc($message->getCc());
|
||||
$this->gmail->bcc($message->getBcc());
|
||||
$this->gmail->bcc(array_keys($message->getBcc()));
|
||||
|
||||
foreach ($message->getChildren() as $child)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue