1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-10-01 21:57:11 +02:00
invoiceninja/app/Helpers/Mail/GmailTransportManager.php

18 lines
386 B
PHP
Raw Normal View History

<?php
namespace App\Helpers\Mail;
use Dacastro4\LaravelGmail\Services\Message\Mail;
use Illuminate\Mail\TransportManager;
class GmailTransportManager extends TransportManager
{
protected function createGmailDriver()
{
$token = $this->app['config']->get('services.gmail.token', []);
2019-12-04 06:26:07 +01:00
$mail = new Mail;
return new GmailTransport($mail, $token);
}
}