I\'m trying to send an email from a ContainerAwareCommand in Symfony2. But I get this exception when the email template is render by:
ContainerAwareCommand
$body = $this-
Since you don't have a request, you need to call the templating service directly like this:
$this->container->get('templating')->render($template, $data);