SwiftmailerBundle如何发送带html内容的电子邮件? Symfony 2

前端之家收集整理的这篇文章主要介绍了SwiftmailerBundle如何发送带html内容的电子邮件? Symfony 2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试发送带有HTML内容的模板
但在电子邮件中我只收到文字

我如何设置发送电子邮件与html内容

$messaggio = \Swift_Message::newInstance()
                ->setSubject('Hello Email')
                ->setFrom('mittente@example.com')
                ->setTo('raulken@hotmail.it')
                ->setBody($this->renderView('AcmeUserBundle:Default:email.text.twig'))
                ;
                $this->get('mailer')->send($messaggio);

解决方法

使用 – > setContentType(“text / html”)指定content-type
原文链接:https://www.f2er.com/html/231413.html

猜你在找的HTML相关文章