2019-12-30 22:59:12 +01:00
|
|
|
<?php
|
2019-12-04 05:52:04 +01:00
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
use App\Helpers\Mail\GmailTransportManager;
|
|
|
|
use Illuminate\Mail\MailServiceProvider as MailProvider;
|
2021-02-10 12:34:39 +01:00
|
|
|
use Illuminate\Mail\TransportManager;
|
2019-12-04 05:52:04 +01:00
|
|
|
|
|
|
|
class MailServiceProvider extends MailProvider
|
|
|
|
{
|
2021-02-10 12:06:10 +01:00
|
|
|
|
|
|
|
public function register()
|
|
|
|
{
|
2021-02-10 12:17:27 +01:00
|
|
|
$this->registerIlluminateMailer();
|
2021-02-10 12:06:10 +01:00
|
|
|
}
|
|
|
|
|
2021-02-10 12:34:39 +01:00
|
|
|
protected function registerIlluminateMailer()
|
2019-12-04 05:52:04 +01:00
|
|
|
{
|
2021-02-10 12:34:39 +01:00
|
|
|
$this->app->singleton('mail.manager', function($app) {
|
|
|
|
return new GmailTransportManager($app);
|
|
|
|
});
|
2021-02-10 12:06:10 +01:00
|
|
|
|
2021-02-11 00:38:42 +01:00
|
|
|
|
2021-02-10 12:34:39 +01:00
|
|
|
$this->app->bind('mailer', function ($app) {
|
|
|
|
return $app->make('mail.manager')->mailer();
|
2019-12-04 05:52:04 +01:00
|
|
|
});
|
|
|
|
}
|
2021-02-10 12:34:39 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2021-02-10 12:34:39 +01:00
|
|
|
|