mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
support for unencrypted mail server usage like mailcatcher.me
This commit is contained in:
parent
8909e75552
commit
fad5c6ee9b
@ -16,3 +16,4 @@ MAIL_HOST=mailtrap.io
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_ENCRYPTION=null
|
@ -67,7 +67,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'encryption' => 'tls',
|
||||
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user