【发布时间】:2017-05-27 15:15:33
【问题描述】:
我想使用 Thymeleaf 引擎从我的应用程序发送 html 电子邮件。我可以发送 html 电子邮件,当我想绑定到模板时,问题就来了,比方说
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head></head>
<body>
<span th:text="${message}"></span>
</body>
</html>
${message} 来自控制器,它是国际化消息,所以我以这种方式得到它
String message = messageSource.getMessage("email_message", null, locale);
email_message 在我的 messages_xx.properties 文件中,具体取决于 locale
message可以加html标签吗?
如果我写类似
Hello <b>User</b><br/>Welcome!
在电子邮件中我从字面上收到了这条消息,因为标签没有被解析
【问题讨论】:
标签: html spring email thymeleaf