Skip to content

Instantly share code, notes, and snippets.

@wijourdil
Last active November 20, 2025 16:52
Show Gist options
  • Select an option

  • Save wijourdil/bc2bee92788e453d4fbb38719242c83d to your computer and use it in GitHub Desktop.

Select an option

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