1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Helpers/Mail/GmailTransport.php

76 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Helpers\Mail;
use Dacastro4\LaravelGmail\Services\Message\Mail;
use Illuminate\Mail\Transport\Transport;
2019-12-04 06:26:07 +01:00
use Swift_Mime_SimpleMessage;
/**
* GmailTransport.
*/
class GmailTransport extends Transport
{
/**
* The Gmail instance.
*
2020-10-28 11:10:49 +01:00
* @var Mail
*/
protected $gmail;
/**
* The GMail OAuth Token.
* @var string token
*/
protected $token;
/**
* Create a new Gmail transport instance.
*
2020-10-28 11:10:49 +01:00
* @param Mail $gmail
* @param string $token
*/
public function __construct(Mail $gmail, string $token)
{
$this->gmail = $gmail;
2019-12-04 06:26:07 +01:00
$this->token = $token;
}
public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null)
{
/*We should nest the token in the message and then discard it as needed*/
$this->beforeSendPerformed($message);
$this->gmail->using($this->token);
$this->gmail->to($message->getTo());
$this->gmail->from($message->getFrom());
$this->gmail->subject($message->getSubject());
2019-12-04 06:26:07 +01:00
$this->gmail->message($message->getBody());
//$this->gmail->message($message->toString());
$this->gmail->cc($message->getCc());
$this->gmail->bcc($message->getBcc());
2020-11-09 22:04:57 +01:00
info(print_r($message->getChildren(), 1));
foreach ($message->getChildren() as $child) {
$this->gmail->attach($child);
} //todo this should 'just work'
$this->gmail->send();
$this->sendPerformed($message);
return $this->numberOfRecipients($message);
}
}