Commit 8e15c7f7 by Taylor Otwell

A few tweaks to mail config.

parent cc09679c
......@@ -8,5 +8,10 @@ DB_USERNAME=homestead
DB_PASSWORD=secret
CACHE_DRIVER=file
MAIL_DRIVER=smtp
SESSION_DRIVER=file
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
......@@ -28,7 +28,7 @@ return [
|
*/
'host' => env('SMTP_HOST', 'smtp.mailgun.org'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
/*
|--------------------------------------------------------------------------
......@@ -41,7 +41,7 @@ return [
|
*/
'port' => env('SMTP_PORT', 587),
'port' => env('MAIL_PORT', 587),
/*
|--------------------------------------------------------------------------
......@@ -80,7 +80,7 @@ return [
|
*/
'username' => env('SMTP_USERNAME'),
'username' => env('MAIL_USERNAME'),
/*
|--------------------------------------------------------------------------
......@@ -93,7 +93,7 @@ return [
|
*/
'password' => env('SMTP_PASSWORD'),
'password' => env('MAIL_PASSWORD'),
/*
|--------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment