Change default mail driver to smtp

The "mail" driver has been removed completely from the underlying libraries due to serious security concerns.
Refs #3256
This commit is contained in:
Samuel Georges 2017-11-23 11:51:33 +11:00
parent 2b6f4a0084
commit a099e4e086
1 changed files with 3 additions and 2 deletions

View File

@ -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',
/*
|--------------------------------------------------------------------------