Skip to content

Instantly share code, notes, and snippets.

@fedeisas
Created June 25, 2013 13:36
Show Gist options
  • Save fedeisas/5858491 to your computer and use it in GitHub Desktop.
Save fedeisas/5858491 to your computer and use it in GitHub Desktop.
<?php namespace MyApp;
class Mailer extends \Illuminate\Mail\Mailer {
/**
* Render the given view.
*
* @param string $view
* @param array $data
* @return \Illuminate\View\View
*/
protected function getView($view, $data)
{
$view = $this->views->make($view, $data)->render();
// Cleanup $view to inline the css and then...
return $view;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment