config: Improved mail encryption documentation

This commit is contained in:
Igor Scheller 2019-04-20 20:02:22 +02:00
parent 58ca7113f3
commit e1be950fb1
1 changed files with 2 additions and 2 deletions

View File

@ -39,12 +39,12 @@ return [
'from' => [ 'from' => [
// From address of all emails // From address of all emails
'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'), 'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'),
'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')) 'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')),
], ],
'host' => env('MAIL_HOST', 'localhost'), 'host' => env('MAIL_HOST', 'localhost'),
'port' => env('MAIL_PORT', 587), 'port' => env('MAIL_PORT', 587),
// Transport encryption like tls // Transport encryption like tls (for starttls) or ssl
'encryption' => env('MAIL_ENCRYPTION', null), 'encryption' => env('MAIL_ENCRYPTION', null),
'username' => env('MAIL_USERNAME'), 'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'), 'password' => env('MAIL_PASSWORD'),