I need to send e-mails but I already have the HTML generated, I don\'t want to use laravel blade because I need to apply a CSS Inliner to the HTML, so this is how i generate
If I'm right in what you want to achieve, to get round this I created a view called echo.php and inside that just echo $html.
Assign your html to something like $data['html'].
Then below pass your $data['html'] to the echo view.
Mail::send('emails.echo', $data, function($message)
{
$message->to('foo@example.com', 'John Smith')->subject('Welcome!');
});
Let me know how you get on.