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
$data = array( 'email' => 'sample@domail.com', 'first_name' => 'Laravel',
'from' => 'sample@domail.comt', 'from_name' => 'learming' );
Mail::send( 'email.welcome', $data, function( $message ) use ($data)
{
$message->to( $data['email'] )->from( $data['from'],
$data['first_name'] )->subject( 'Welcome!' );
});