我正在尝试使用SwiftMailer发送html电子邮件。发送电子邮件,但仅以文本格式发送,而不以html格式发送。
我遵循了SwitMailer的文档,以创建新消息。我用'text / html'渲染html。
在我的TwigSwiftMailer.php中:
protected function sendMessage($templateName, $context, $fromEmail,
$toEmail)
{
$template = $this->twig->load($templateName);
$subject = $template->renderBlock('subject', $context);
$textBody = $template->renderBlock(/*'body_text'*/'body_html',
$context);
$htmlBody = '';
if ($template->hasBlock('body_html', $context)) {
$htmlBody = $template->renderBlock('body_html', $context);
}
$message = (new Swift_Message())
->setSubject($subject)
->setFrom($fromEmail)
->setTo($toEmail)
->setContentType("text/html")
->setBody('My <em>amazing</em> body', 'text/html');
return $this->mailer->send($message);
在parameters.yml中,我的mailer_transport设置为smtp。
这是我的模板:
{% trans_default_domain 'FOSUserBundle' %}
{% block subject %}
{%- autoescape false -%}
{{ 'registration.email.subject'|trans({'%username%': user.username,
'%confirmationUrl%': confirmationUrl}) }}
{%- endautoescape -%}
{% endblock %}
{% block body_text %}
{% autoescape false %}
{{ 'registration.email.message'|trans({'%username%': user.username,
'%confirmationUrl%': confirmationUrl}) }}
{% endautoescape %}
{% endblock %}
我希望在收到的电子邮件中收到HTML电子邮件。输出是纯文本,所有html可见,例如(<em>amazing</em>
。
我该如何处理?