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

103 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Helpers\Mail;
2021-02-11 04:43:48 +01:00
use App\Utils\TempFile;
2021-02-17 01:25:30 +01:00
use Dacastro4\LaravelGmail\Facade\LaravelGmail;
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;
/**
* 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)
{
$this->gmail = $gmail;
}
public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null)
{
/* For some reason the Injected Mail class carries cached tokens, so we need to reinit the Mail class*/
$this->gmail = null;
$this->gmail = new Mail;
/*We should nest the token in the message and then discard it as needed*/
2021-02-17 01:25:30 +01:00
$token = $message->getHeaders()->get('GmailToken')->getValue();
2021-02-16 13:56:12 +01:00
$message->getHeaders()->remove('GmailToken');
$this->beforeSendPerformed($message);
2021-02-17 01:25:30 +01:00
$this->gmail->using($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->cc($message->getCc());
2021-06-23 07:13:33 +02:00
if(is_array($message->getBcc()))
$this->gmail->bcc(array_keys($message->getBcc()));
2021-02-11 08:58:37 +01:00
foreach ($message->getChildren() as $child)
{
2021-02-11 08:58:37 +01:00
if($child->getContentType() != 'text/plain')
{
2021-02-11 08:32:49 +01:00
2021-11-14 22:52:04 +01:00
$this->gmail->attach(TempFile::filePath($child->getBody(), $child->getHeaders()->get('Content-Type')->getParameter('name') ));
2021-02-11 08:32:49 +01:00
}
2021-02-11 08:58:37 +01:00
}
2021-02-11 08:32:49 +01:00
/**
* Google is very strict with their
* sending limits, if we hit 429s, sleep and
* retry again later.
*/
try{
$this->gmail->send();
}
catch(\Google\Service\Exception $e)
{
nlog("gmail exception");
nlog($e->getErrors());
sleep(5);
$this->gmail->send();
}
$this->sendPerformed($message);
return $this->numberOfRecipients($message);
}
}