mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
23 lines
553 B
PHP
23 lines
553 B
PHP
<?php
|
|
|
|
namespace App\Helpers\Mail;
|
|
|
|
use Illuminate\Mail\MailManager;
|
|
use App\CustomMailDriver\CustomTransport;
|
|
use Dacastro4\LaravelGmail\Services\Message\Mail;
|
|
use Illuminate\Support\Facades\Config;
|
|
|
|
|
|
class GmailTransportManager extends MailManager
|
|
{
|
|
protected function createGmailTransport()
|
|
{
|
|
info("booting gmail transport");
|
|
// $token = $this->app['config']->get('services.gmail.token', []);
|
|
//$token = config('services.gmail.token');
|
|
|
|
$mail = new Mail;
|
|
|
|
return new GmailTransport($mail, $token);
|
|
}
|
|
} |