Skip to content

Instantly share code, notes, and snippets.

@steinkel
Last active December 6, 2016 15:26
Show Gist options
  • Save steinkel/a01465f98b87182a884947e76e46533f to your computer and use it in GitHub Desktop.
Save steinkel/a01465f98b87182a884947e76e46533f to your computer and use it in GitHub Desktop.
debugmail as a default debug transport in config/app.php
'EmailTransport' => [
'default' => [
'className' => 'Smtp',
'host' => 'debugmail.io',
'port' => 25,
'timeout' => 30,
'username' => 'YOUR_DEBUGMAIL_EMAIL',
'password' => 'YOUR_DEBUGMAIL_PROJECT_PASSWORD',
'client' => null,
'tls' => null,
'url' => env('EMAIL_TRANSPORT_DEFAULT_URL', null),
],
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment