Last active
March 24, 2025 18:03
-
-
Save wijourdil/bc2bee92788e453d4fbb38719242c83d to your computer and use it in GitHub Desktop.
Send a test mail / notification in Laravel from Tinker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*/ | |
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