标签: 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
答案 0 :(得分:5)
您需要使用renderView()代替render()
renderView()
render()
renderView()返回视图的内容。
render()返回Responseobject。
正如docs所说