Skip to content

Instantly share code, notes, and snippets.

@claide
Created April 14, 2025 14:17
Show Gist options
  • Save claide/bab00456a141b606abc3e78a9ddfd86d to your computer and use it in GitHub Desktop.
Save claide/bab00456a141b606abc3e78a9ddfd86d to your computer and use it in GitHub Desktop.
Test email sending on Laravel app using tinker
php artisan tinker
Mail::raw('Test email', function ($message) {
$mesage->to('[email protected]')->subject('Test Email');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment