Jodd framework http://jodd.org/doc/email.html提供了一个发送电子邮件的库。它是否支持一些模板引擎?
不直接。Jodd电子邮件只是发送电子邮件。但是你可以很容易地使用任何模板引擎(Freemarker, Velocity…)来构建消息体。该流程将是这样的(用伪代码):
Map context = ... // this is your context map; filled with variable values
String message = parse(template, context); // every engine has some way to apply context to the template
Email.create()
.from("...@jodd.org")
.to("...@jodd.org")
.subject("Hello!")
.addHtml(message);
您甚至可以使用Jodds的简单字符串模板解析器-非常简单的模板解析器,用于替换上下文映射的值。