We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
config/mail.php
1 parent a39cb7c commit eb8085cCopy full SHA for eb8085c
.env.example
@@ -49,11 +49,11 @@ REDIS_PASSWORD=null
49
REDIS_PORT=6379
50
51
MAIL_MAILER=log
52
+MAIL_SCHEME=null
53
MAIL_HOST=127.0.0.1
54
MAIL_PORT=2525
55
MAIL_USERNAME=null
56
MAIL_PASSWORD=null
-MAIL_ENCRYPTION=null
57
MAIL_FROM_ADDRESS="hello@example.com"
58
MAIL_FROM_NAME="${APP_NAME}"
59
config/mail.php
@@ -39,10 +39,10 @@
39
40
'smtp' => [
41
'transport' => 'smtp',
42
+ 'scheme' => env('MAIL_SCHEME'),
43
'url' => env('MAIL_URL'),
44
'host' => env('MAIL_HOST', '127.0.0.1'),
45
'port' => env('MAIL_PORT', 2525),
- 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
46
'username' => env('MAIL_USERNAME'),
47
'password' => env('MAIL_PASSWORD'),
48
'timeout' => null,
0 commit comments