Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save emmanuelbarturen/d596aa2e04a05018363266fcfae30042 to your computer and use it in GitHub Desktop.
Save emmanuelbarturen/d596aa2e04a05018363266fcfae30042 to your computer and use it in GitHub Desktop.
send email from artisan with tinker of laravel
# SSH into droplet
# go to project
$ php artisan tinker
$ Mail::send('errors.401', [], function ($message) { $message->to('emmanuelbarturen@gmail.com')->subject('this works!'); });
# check your mailbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment