使用 Velocity 或 FreeMarker 创建电子邮件模板
我想生成一些模板来从我的应用程序发送自动邮件。
有人可以让我知道如何使用velocity 或 FreeMarker 生成模板,然后将模板作为 HTML 内容包含在电子邮件正文中吗?
问候,
萨蒂亚
I would like to generate few templates for sending automated mails from my application.
Can anybody let me know how to generate the templates using velocity or FreeMarker and then include templates in e-mail body as HTML content?
Regards,
Satya
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,我建议您坚持使用 FreeMarker。 Velocity 本身不支持 HTML 编码。有一种方法可以作为 Velocity 扩展来启用此功能,但它依赖于 servlet 容器的环境,而该环境并不总是可用。幸运的是,FreeMarker 的
?html
内置是一个可以在任何地方使用的纯 Java 实现。I would suggest you stick to FreeMarker for that purpose. Velocity does not natively support HTML-encoding. There's a way to enable this feature as a Velocity extension, but it relies on an environment of a servlet container which is not always available. Fortunatley, FreeMarker's
?html
built-in is a pure Java implementation that works everywhere.您需要使用 Freemarker 或 Velocity 生成 HTML 字符串,然后发送普通电子邮件。
阅读文档,http://freemarker.sourceforge.net/docs/index.html或 http://velocity.apache.org/engine/releases/velocity-1.5/user-guide.html
You need to use Freemarker or Velocity to just generate the HTML string, then send a normal email.
Read the documentation, http://freemarker.sourceforge.net/docs/index.html or http://velocity.apache.org/engine/releases/velocity-1.5/user-guide.html