new MAIL_ENCRYPTION parameter

Make the encryption parameter of the mail transport configuration
configurable with an environment variable. Default is still the
same: tls
This commit is contained in:
Tobias Brunner 2015-09-09 16:59:07 +02:00
parent c4e4035fea
commit 600493f1cb

View File

@ -76,7 +76,7 @@ return [
|
*/
'encryption' => 'tls',
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
/*
|--------------------------------------------------------------------------