From a099e4e0862bb0756e553f6dca32b1a3402d007d Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Thu, 23 Nov 2017 11:51:33 +1100 Subject: [PATCH] Change default mail driver to smtp The "mail" driver has been removed completely from the underlying libraries due to serious security concerns. Refs #3256 --- config/mail.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/mail.php b/config/mail.php index 96bd8f75d..7c2332d2f 100644 --- a/config/mail.php +++ b/config/mail.php @@ -11,11 +11,12 @@ return [ | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | - | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log" + | Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses", + | "sparkpost", "log", "array" | */ - 'driver' => 'mail', + 'driver' => 'smtp', /* |--------------------------------------------------------------------------