Thymeleafエンジンを使用して、自分のアプリケーションからhtml電子メールを送信したいと思います。私は、テンプレートにバインドするとき、私はHTML形式の電子メールを送信することができ、問題が来る、のは Spring + 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);
でそれを得ます
message
にhtmlタグを追加することは可能ですか?locale
に応じて、email_messageがmessages_xx.propertiesファイルにありますか?
私は電子メールで
Hello <b>User</b><br/>Welcome!
ような何かを書く場合はタグが
ありがとう、私は春の中で何かを見ていた、直接Thymeleafに考えられていない! – besmart