1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/app/Helpers/Mail/GmailTransportManager.php

23 lines
551 B
PHP
Raw Normal View History

<?php
namespace App\Helpers\Mail;
2021-02-10 12:34:39 +01:00
use Illuminate\Mail\MailManager;
use App\CustomMailDriver\CustomTransport;
use Dacastro4\LaravelGmail\Services\Message\Mail;
2021-02-11 12:37:58 +01:00
use Illuminate\Support\Facades\Config;
2021-02-10 12:34:39 +01:00
class GmailTransportManager extends MailManager
{
2021-02-10 12:34:39 +01:00
protected function createGmailTransport()
{
info("booting gmail transport");
// $token = $this->app['config']->get('services.gmail.token', []);
2021-02-16 12:47:30 +01:00
$token = config('services.gmail.token');
2019-12-04 06:26:07 +01:00
$mail = new Mail;
return new GmailTransport($mail, $token);
}
2021-02-10 12:34:39 +01:00
}