Skip to content

Instantly share code, notes, and snippets.

@hoangsvit
Last active June 17, 2023 07:12
Show Gist options
  • Save hoangsvit/16c01d804c42c750fd5f5d6cfcaacf47 to your computer and use it in GitHub Desktop.
Save hoangsvit/16c01d804c42c750fd5f5d6cfcaacf47 to your computer and use it in GitHub Desktop.
Send a test mail / notification in Laravel from Tinker
php artisan tinker
Notification::route('mail', 'hello@eplus.dev')
            ->route('nexmo', '5555555555')
            ->route('slack', 'https://hooks.slack.com/services/...')
            ->notify(new InvoicePaid($invoice));
Mail::raw('hello world', function($message) { $message->to('dev@eplus.dev')->subject('Testing mails'); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment