mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-05 13:44:35 -04:00
commit
d98bf747f7
@ -46,7 +46,7 @@ class GmailTransport extends Transport
|
|||||||
$this->gmail = null;
|
$this->gmail = null;
|
||||||
$this->gmail = new Mail;
|
$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*/
|
/*We should nest the token in the message and then discard it as needed*/
|
||||||
$token = $message->getHeaders()->get('GmailToken')->getValue();
|
$token = $message->getHeaders()->get('GmailToken')->getValue();
|
||||||
@ -62,7 +62,7 @@ class GmailTransport extends Transport
|
|||||||
$this->gmail->message($message->getBody());
|
$this->gmail->message($message->getBody());
|
||||||
|
|
||||||
$this->gmail->cc($message->getCc());
|
$this->gmail->cc($message->getCc());
|
||||||
$this->gmail->bcc($message->getBcc());
|
$this->gmail->bcc(array_keys($message->getBcc()));
|
||||||
|
|
||||||
foreach ($message->getChildren() as $child)
|
foreach ($message->getChildren() as $child)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user