Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending a mail without creating a Mailable in Laravel 5.5

I don't see anything about sending Mail without creating a Mailable class in Laravel 5.5 documentation. I know it was possible before (5.2) but I don't remember how.

Is it still possible? Is it deprecated? Is there something I missed in the documentation? How can I send a mail without creating a Mailable in Laravel 5.5?

I would like something like:

Mail::fromText('hello world')->to('[email protected]')->send();
like image 756
rap-2-h Avatar asked Nov 20 '17 14:11

rap-2-h


1 Answers

I think it's not deprecated but it's assumed now that you will send more complex mails via Mailables. But it should be still possible to send mail like this:

\Mail::raw('hello world', function($message) {
   $message->subject('message subject')->to('[email protected]');
});
like image 68
Marcin Nabiałek Avatar answered Oct 28 '22 14:10

Marcin Nabiałek