2019-12-04 05:52:04 +01:00
|
|
|
<?php
|
2021-02-16 13:24:36 +01:00
|
|
|
/**
|
|
|
|
* 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-02-16 13:24:36 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-02-16 13:24:36 +01:00
|
|
|
*/
|
2019-12-04 05:52:04 +01:00
|
|
|
namespace App\Helpers\Mail;
|
|
|
|
|
2021-02-10 12:34:39 +01:00
|
|
|
use Illuminate\Mail\MailManager;
|
|
|
|
use App\CustomMailDriver\CustomTransport;
|
2019-12-04 05:52:04 +01:00
|
|
|
use Dacastro4\LaravelGmail\Services\Message\Mail;
|
2021-02-11 12:37:58 +01:00
|
|
|
use Illuminate\Support\Facades\Config;
|
2019-12-04 05:52:04 +01:00
|
|
|
|
2021-02-10 12:34:39 +01:00
|
|
|
|
|
|
|
class GmailTransportManager extends MailManager
|
2019-12-04 05:52:04 +01:00
|
|
|
{
|
2021-02-10 12:34:39 +01:00
|
|
|
protected function createGmailTransport()
|
2019-12-04 05:52:04 +01:00
|
|
|
{
|
2021-02-16 13:24:36 +01:00
|
|
|
return new GmailTransport(new Mail);
|
2019-12-04 05:52:04 +01:00
|
|
|
}
|
2021-02-10 12:34:39 +01:00
|
|
|
}
|