Source: https://www.gregoryvarghese.com/how-to-test-email-sending-in-laravel-5-3-using-artisan-tinker/
Mail::raw('hello world', function($message) {
$message->subject('Testing email')->to('[email protected]');
});
Source: https://www.gregoryvarghese.com/how-to-test-email-sending-in-laravel-5-3-using-artisan-tinker/
Mail::raw('hello world', function($message) {
$message->subject('Testing email')->to('[email protected]');
});