I set \'pretend\' => true,
in the mail.php
, created this new.php
view:
E-mail: {{
I include this in my send callbacks:
Mail::send(array('emails.html','emails.text'),$data,function($message) use($data)
{
//Set $message data
if(Config::get('mail.pretend')) Log::info(View::make('emails.html',$data)->render());
}
Alternately, you can pass the views render into another view to see the html rendered in your browser.