Skip to content

Commit eb8085c

Browse files
authored
[11.x] Update config/mail.php with supported configuration (laravel#6506)
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent a39cb7c commit eb8085c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ REDIS_PASSWORD=null
4949
REDIS_PORT=6379
5050

5151
MAIL_MAILER=log
52+
MAIL_SCHEME=null
5253
MAIL_HOST=127.0.0.1
5354
MAIL_PORT=2525
5455
MAIL_USERNAME=null
5556
MAIL_PASSWORD=null
56-
MAIL_ENCRYPTION=null
5757
MAIL_FROM_ADDRESS="[email protected]"
5858
MAIL_FROM_NAME="${APP_NAME}"
5959

config/mail.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939

4040
'smtp' => [
4141
'transport' => 'smtp',
42+
'scheme' => env('MAIL_SCHEME'),
4243
'url' => env('MAIL_URL'),
4344
'host' => env('MAIL_HOST', '127.0.0.1'),
4445
'port' => env('MAIL_PORT', 2525),
45-
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
4646
'username' => env('MAIL_USERNAME'),
4747
'password' => env('MAIL_PASSWORD'),
4848
'timeout' => null,

0 commit comments

Comments
 (0)