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