Skip to content

Commit

Permalink
support for unencrypted mail server usage like mailcatcher.me
Browse files Browse the repository at this point in the history
  • Loading branch information
sineld committed Mar 4, 2015
1 parent 8909e75 commit fad5c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env.example
Expand Up @@ -16,3 +16,4 @@ MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
2 changes: 1 addition & 1 deletion config/mail.php
Expand Up @@ -67,7 +67,7 @@
|
*/

'encryption' => 'tls',
'encryption' => env('MAIL_ENCRYPTION', 'tls'),

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

0 comments on commit fad5c6e

Please sign in to comment.