Skip to content

Commit

Permalink
Merge pull request #7 from CottaCush/fixes/typo-in-smtp-config
Browse files Browse the repository at this point in the history
(Fixes): Correct typo in SMTP config
  • Loading branch information
goke-epapa authored Feb 7, 2017
2 parents e3e638b + 5aa5063 commit b51c3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'class' => 'Swift_SmtpTransport',
'host' => getenv('SMTP_HOST'),
'username' => getenv('SMTP_USERNAME'),
'password' => getenv('SMTP_USERNAME'),
'password' => getenv('SMTP_PASSWORD'),
'port' => getenv('SMTP_PORT'),
'encryption' => 'tls',
],
Expand Down

0 comments on commit b51c3c0

Please sign in to comment.