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

88 lines
2.2 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
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());
$this->gmail->bcc($message->getBcc());
2021-02-11 08:58:37 +01:00
foreach ($message->getChildren() as $child)
{
2021-02-11 08:32:49 +01:00
nlog("trying to attach");
2021-02-11 08:58:37 +01:00
if($child->getContentType() != 'text/plain')
{
2021-02-11 08:32:49 +01:00
2021-02-11 08:58:37 +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
$this->gmail->send();
$this->sendPerformed($message);
2021-02-17 01:25:30 +01:00
return $this->numberOfRecipients($message);
}
}