Quickfix for problems with the SmtpTransport
This commit is contained in:
parent
47b3d35f36
commit
d36de2d26f
|
@ -68,9 +68,12 @@ class MailerServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
/** @var SmtpTransport $transport */
|
/** @var SmtpTransport $transport */
|
||||||
$transport = $this->app->make(SmtpTransport::class, [
|
$transport = $this->app->make(SmtpTransport::class, [
|
||||||
'host' => $config['host'],
|
'host' => $config['host'],
|
||||||
'port' => $config['port'],
|
'port' => $config['port'],
|
||||||
'security' => $config['encryption'],
|
'encryption' => $config['encryption'],
|
||||||
|
// TODO: The security variable should be removed in the future
|
||||||
|
// https://github.com/swiftmailer/swiftmailer/commit/d3d6a98ab7dc155a04eb08273db7cd34606e7b5e#commitcomment-30462876
|
||||||
|
'security' => $config['encryption'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if ($config['username']) {
|
if ($config['username']) {
|
||||||
|
|
Loading…
Reference in New Issue