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();