Skip to content

Commit

Permalink
A few tweaks to mail config.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 23, 2015
1 parent cc09679 commit 8e15c7f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .env.example
Expand Up @@ -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
8 changes: 4 additions & 4 deletions config/mail.php
Expand Up @@ -28,7 +28,7 @@
|
*/

'host' => env('SMTP_HOST', 'smtp.mailgun.org'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
Expand All @@ -41,7 +41,7 @@
|
*/

'port' => env('SMTP_PORT', 587),
'port' => env('MAIL_PORT', 587),

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -80,7 +80,7 @@
|
*/

'username' => env('SMTP_USERNAME'),
'username' => env('MAIL_USERNAME'),

/*
|--------------------------------------------------------------------------
Expand All @@ -93,7 +93,7 @@
|
*/

'password' => env('SMTP_PASSWORD'),
'password' => env('MAIL_PASSWORD'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 8e15c7f

Please sign in to comment.