使用 Velocity 或 FreeMarker 创建电子邮件模板

发布于 2024-11-02 05:11:35 字数 129 浏览 0 评论 0原文

我想生成一些模板来从我的应用程序发送自动邮件。

有人可以让我知道如何使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

欲拥i 2024-11-09 05:11:35

为此,我建议您坚持使用 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.

笑饮青盏花 2024-11-09 05:11:35

您需要使用 Freemarker 或 Velocity 生成 HTML 字符串,然后发送普通电子邮件。

阅读文档,http://freemarker.sourceforge.net/docs/index.htmlhttp://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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文