Skip to content

Instantly share code, notes, and snippets.

@wijourdil
Last active January 12, 2024 11:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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('myawesomeemail@domain.com')->subject('Testing mails'); });
/**
* Notification
*/
Notification::route('mail', 'test@example.com')->notify(new MyNotification());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment