Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个要求,我们希望在发送电子邮件之前将其存储在数据库中。我目前使用的是 1.2.5 版。我想利用 play 提供的 Mail 和 MVC 集成,因为电子邮件将包含大量动态内容。有什么办法可以在游戏框架中完成。感谢任何人提供一些指导。
如果您只想存储内容(而不关心标题),那么您可以将 MVC 视图模板呈现为字符串,并将其存储在数据库中。你会得到如下的字符串
String emailContent = TemplateLoader.load("pathToEmailView").render(args);
在以正常方式发送电子邮件之前,您只需以标准方式将其保存到数据库中。