We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
If you want a quick way to send a plain text email from Laravel, you can use Mail::raw
:
use Illuminate\Mail\Message;
use Illuminate\Support\Facades\Mail;
Mail::raw('Hello world', function (Message $message) {
$message->to('you@gmail.com')->from('me@gmail.com');
});
The documentation for this facade can be found here.
If this post was enjoyable or useful for you, please share it! If you have comments, questions, or feedback, you can email my personal email. To get new posts, subscribe use the RSS feed.