如何使用 Grails 外部化 GSP 邮件模板?

发布于 2024-10-13 03:29:44 字数 296 浏览 1 评论 0原文

当从模板呈现电子邮件时,会在“grails_app/views”中查找模板:

mailService.sendMail {
    from sender
    to recepient.email
    subject "Don't forget"
    body  (view: "/emails/reminder",
        model:[recepient: recepient, document: document])
}

如何将应用程序外部的邮件模板(war 文件)放入文件系统中?

When emails are rendered from templates, the templates are looked up in "grails_app/views":

mailService.sendMail {
    from sender
    to recepient.email
    subject "Don't forget"
    body  (view: "/emails/reminder",
        model:[recepient: recepient, document: document])
}

How can I put the mail templates outside of the application (war file) into the file system?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼泪都笑了 2024-10-20 03:29:44

有两个选项:

  1. 将模板作为文本存储在数据库中,并生成默认的增删改查代码来更新它们。然后,您可以修改电子邮件代码以使用域对象从数据库中提取数据。
  2. 将模板作为字符串存储在 Groovy 配置文件中。 Groovy 可以使用外部配置文件,这些文件可以与打包的应用程序分开编辑。有关详细信息,请参阅此博文

获得字符串后,您可以使用 Grails 控制器中的 GSP 引擎和任意字符串来创建视图。有关更多详细信息,请参阅此博文

简而言之,您可以使用列出的选项之一将模板存储为字符串,然后在检索模板字符串后使用 Grails GSP 引擎创建视图。

There are two options:

  1. Store your templates as text in the database, and generate the default crud code to update them. You would then modify the email code to pull the data out of the database using domain objects.
  2. Store the templates as strings in a Groovy config file. Groovy can use external configuration files that can be edited separately from the packaged application. See this blog postfor details.

Once you have your string, you can use the GSP engine from a Grails controller with any arbitrary string to create a view. See this blog post for more details.

In short, you would store your template as a string using one of the listed options and then use the Grails GSP engine to create the view once you retrieved the template string.

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