File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,10 @@ DB_USERNAME=homestead
8
8
DB_PASSWORD = secret
9
9
10
10
CACHE_DRIVER = file
11
- MAIL_DRIVER = smtp
12
11
SESSION_DRIVER = file
12
+
13
+ MAIL_DRIVER = smtp
14
+ MAIL_HOST = mailtrap.io
15
+ MAIL_PORT = 2525
16
+ MAIL_USERNAME = null
17
+ MAIL_PASSWORD = null
Original file line number Diff line number Diff line change 28
28
|
29
29
*/
30
30
31
- 'host ' => env ('SMTP_HOST ' , 'smtp.mailgun.org ' ),
31
+ 'host ' => env ('MAIL_HOST ' , 'smtp.mailgun.org ' ),
32
32
33
33
/*
34
34
|--------------------------------------------------------------------------
41
41
|
42
42
*/
43
43
44
- 'port ' => env ('SMTP_PORT ' , 587 ),
44
+ 'port ' => env ('MAIL_PORT ' , 587 ),
45
45
46
46
/*
47
47
|--------------------------------------------------------------------------
80
80
|
81
81
*/
82
82
83
- 'username ' => env ('SMTP_USERNAME ' ),
83
+ 'username ' => env ('MAIL_USERNAME ' ),
84
84
85
85
/*
86
86
|--------------------------------------------------------------------------
93
93
|
94
94
*/
95
95
96
- 'password ' => env ('SMTP_PASSWORD ' ),
96
+ 'password ' => env ('MAIL_PASSWORD ' ),
97
97
98
98
/*
99
99
|--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments