在symfony中从swift邮件程序发送时阻止来自电子邮件的标题

时间:2014-07-10 14:46:19

标签: php email symfony swiftmailer

我正在使用swift邮件程序发送电子邮件。它工作正常,但在电子邮件中它正在发送标题信息。如何阻止它在电子邮件中发送标题信息。它就像:

 HTTP/1.0 200 OK Cache-Control: no-cache Date: Thu, 10 Jul 2014 14:42:58 GMT
 Hello User

 Here is your email content

1 个答案:

答案 0 :(得分:5)

您需要使用renderView()代替render()

renderView()返回视图的内容。

render()返回Responseobject。

正如docs所说