mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
commit
2acd39c73e
@ -42,9 +42,9 @@ class MailCssInlinerServiceProvider extends ServiceProvider
|
||||
return new CssInlinerPlugin([]);
|
||||
});
|
||||
|
||||
$this->app->afterResolving('mail.manager', function (MailManager $mailManager) {
|
||||
$mailManager->getSwiftMailer()->registerPlugin($this->app->make(CssInlinerPlugin::class));
|
||||
return $mailManager;
|
||||
});
|
||||
// $this->app->afterResolving('mail.manager', function (MailManager $mailManager) {
|
||||
// $mailManager->getSwiftMailer()->registerPlugin($this->app->make(CssInlinerPlugin::class));
|
||||
// return $mailManager;
|
||||
// });
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ class MailServiceProvider extends MailProvider
|
||||
|
||||
protected function registerIlluminateMailer()
|
||||
{
|
||||
|
||||
|
||||
$this->app->singleton('mail.manager', function($app) {
|
||||
return new GmailTransportManager($app);
|
||||
});
|
||||
@ -50,7 +50,12 @@ class MailServiceProvider extends MailProvider
|
||||
);
|
||||
|
||||
});
|
||||
|
||||
|
||||
$this->app->afterResolving('mail.manager', function (MailManager $mailManager) {
|
||||
$mailManager->getSwiftMailer()->registerPlugin($this->app->make(CssInlinerPlugin::class));
|
||||
return $mailManager;
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
protected function guzzle(array $config): HttpClient
|
||||
|
Loading…
Reference in New Issue
Block a user