Skip to content

Instantly share code, notes, and snippets.

@arshohag
Last active March 31, 2020 11:05
Show Gist options
  • Select an option

  • Save arshohag/bf45a765aef5f52285e81591712040be to your computer and use it in GitHub Desktop.

Select an option

Save arshohag/bf45a765aef5f52285e81591712040be to your computer and use it in GitHub Desktop.
test laravel mail server configuration using tinker

SSH into the server

Run

php artisan tinker

Run this following commnad

Mail::send('welcome', [], function($message) {
    $message->to('arshohag8@gmail.com')->subject('Testing mails');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment