Created
November 3, 2017 23:12
-
-
Save emmanuelbarturen/d596aa2e04a05018363266fcfae30042 to your computer and use it in GitHub Desktop.
send email from artisan with tinker of laravel
This file contains 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
# SSH into droplet | |
# go to project | |
$ php artisan tinker | |
$ Mail::send('errors.401', [], function ($message) { $message->to('[email protected]')->subject('this works!'); }); | |
# check your mailbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment