From d36de2d26f5af76d5d4f34f8620694c6d0368983 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Tue, 11 Sep 2018 16:35:28 +0200 Subject: Quickfix for problems with the SmtpTransport --- src/Mail/MailerServiceProvider.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/Mail') diff --git a/src/Mail/MailerServiceProvider.php b/src/Mail/MailerServiceProvider.php index 70cb0d30..989fee8f 100644 --- a/src/Mail/MailerServiceProvider.php +++ b/src/Mail/MailerServiceProvider.php @@ -68,9 +68,12 @@ class MailerServiceProvider extends ServiceProvider { /** @var SmtpTransport $transport */ $transport = $this->app->make(SmtpTransport::class, [ - 'host' => $config['host'], - 'port' => $config['port'], - 'security' => $config['encryption'], + 'host' => $config['host'], + 'port' => $config['port'], + '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']) { -- cgit v1.2.3-54-g00ecf