Skip to content

Instantly share code, notes, and snippets.

@wijourdil
Last active March 24, 2025 18:03
Show Gist options
  • Save wijourdil/bc2bee92788e453d4fbb38719242c83d to your computer and use it in GitHub Desktop.
Save wijourdil/bc2bee92788e453d4fbb38719242c83d to your computer and use it in GitHub Desktop.
Send a test mail / notification in Laravel from Tinker
<?php
/**
* Mail
*/
Mail::raw('hello world', function($message) { $message->to('[email protected]')->subject('Testing mails'); });
/**
* Notification
*/
Notification::route('mail', '[email protected]')->notify(new MyNotification());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment