Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save agoalofalife/c3b4bdab9ff4084e0fc15ffac6917461 to your computer and use it in GitHub Desktop.
Save agoalofalife/c3b4bdab9ff4084e0fc15ffac6917461 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!'); });
Mail::raw('test', function ($message) {$message->subject('Тестовая тема');$message->from('test@test.com');$message->to('agoalofalife@gmail.com');});
# check your mailbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment