I want to send a confirmation e-mail using laravel.The laravel Mail::send() function only seems to accept a path to a file on the system.The problem is that my mailtemplates are stored in the database and not in a file on the system.
How can I pass plain content to the email?
Example:
$content = "Hi,welcome user!";Mail::send($content,$data,function(){});