Last active
January 9, 2019 15:21
-
-
Save conroyp/16830ff1f360b52639ae to your computer and use it in GitHub Desktop.
Laravel mail config for use with Mailcatcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
‘driver’ => ‘smtp’, | |
'host' => '127.0.0.1', | |
'port' => 1025, | |
'username' => '', | |
'password' => '', | |
‘encryption’ => false, | |
‘from’ => [ | |
‘address’ => ‘[email protected]’, | |
‘name’ => ‘Email Testing’ | |
] | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment