Мой контроллер:
Код: Выделить всё
$content = $postData['name']. ' \n \n ' .$postData['address'];
$message = \Swift_Message::newInstance()
->setSubject('test')
->setFrom($session->get('email'))
->setTo('myemail@gmail.com')
->setBody(
$this->renderView(
'email.html.twig',
array('content' => $content)
),
'text/html'
)
;
Код: Выделить всё
{{ content | nl2br }}
Код: Выделить всё
name \n \n address
Подробнее здесь: https://stackoverflow.com/questions/365 ... ine-breaks