Skip to content

Instantly share code, notes, and snippets.

@conroyp
Last active January 9, 2019 15:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conroyp/16830ff1f360b52639ae to your computer and use it in GitHub Desktop.
Save conroyp/16830ff1f360b52639ae to your computer and use it in GitHub Desktop.
Laravel mail config for use with Mailcatcher
<?php
return [
‘driver’ => ‘smtp’,
'host' => '127.0.0.1',
'port' => 1025,
'username' => '',
'password' => '',
‘encryption’ => false,
‘from’ => [
‘address’ => ‘testaddress@example.com’,
‘name’ => ‘Email Testing’
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment