如何使用Thymeleaf处理TXT电子邮件模板?

时间:2017-01-11 20:16:00

标签: spring email thymeleaf plaintext

我正在尝试使用Thymeleaf从Spring应用程序发送plain text个电子邮件。

这是我的电子邮件服务:

@Override
public void sendPasswordToken(Token token) throws ServiceException {
    Assert.notNull(token);

    try {

        Locale locale = Locale.getDefault();

        final Context ctx = new Context(locale);
        ctx.setVariable("url", url(token));

        // Prepare message using a Spring helper
        final MimeMessage mimeMessage = mailSender.createMimeMessage();

        final MimeMessageHelper message = new MimeMessageHelper(
                mimeMessage, false, SpringMailConfig.EMAIL_TEMPLATE_ENCODING
        );

        message.setSubject("Token");
        message.setTo(token.getUser().getUsername());

        final String content = this.textTemplateEngine.process("text/token", ctx);
        message.setText(content, false);

        mailSender.send(mimeMessage);

    } catch (Exception e) {
        throw new ServiceException("Token has not been sent", e);
    }
}

电子邮件已发送并发送到邮箱。

这是我的plain text电子邮件模板:

  

令牌网址:$ {url}

但是在已发送邮箱url中,变量不会替换为其值。为什么?

当我使用html经典HTML Thymeleaf语法时,变量被替换为:

<span th:text="${url}"></span>

电子邮件文本模板的正确语法是什么?

2 个答案:

答案 0 :(得分:11)

您也可以在纯文本模式下使用Thymeleaf,如下例所示:

Dear [(${customer.name})],

This is the list of our products:
[# th:each="p : ${products}"]
   - [(${p.name})]. Price: [(${#numbers.formatdecimal(p.price,1,2)})] EUR/kg
[/]
Thanks,
  The Thymeleaf Shop

这意味着您可以在其中包含一个文本文件:

Token url: [(${url})]

在这里查看这些功能的完整文档:

https://github.com/thymeleaf/thymeleaf/issues/395

修改

如评论中所述,请务必使用Thymeleaf版本&gt; = 3.0:

<properties>
  <thymeleaf.version>3.0.3.RELEASE</thymeleaf.version>
  <thymeleaf-layout-dialect.version>2.1.2</thymeleaf-layout-dialect.version>
</properties>

答案 1 :(得分:0)

使用像这样的HTML模板,它将生成纯文本。

<html xmlns:th="http://www.thymeleaf.org" th:inline="text" th:remove="tag">
Token url: [[${url}]]
</html>

另一种方式,仍然使用html可能是这样的

<span th:text="Token url:" th:remove="tag"></span><span th:text="${url}" th:remove="tag"></span>

你正在寻找的是plain text,所以百里香将为你返回。