config: Improved mail encryption documentation
This commit is contained in:
parent
58ca7113f3
commit
e1be950fb1
|
@ -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'),
|
||||||
|
|
Loading…
Reference in New Issue