我可以在 xml 电子邮件模板中使用条件分支吗
我想要通用的电子邮件模板。目前,我有多个电子邮件模板,其中主题和正文的某些部分已更改。我想将它们与一些条件分支组合在一起,例如,
<email>
<sub>
if(condition)
sub1
else
sub2
</sub>
<body>
some text
if(condition)
text...
else
text...
body continued...
</body>
</email>
我可以以任何方式执行此操作吗?
I want to have generalised email templates. Currently I have multiple email templates with some part of the subject and body being changed. I would like to club them together with some conditional branching like,
<email>
<sub>
if(condition)
sub1
else
sub2
</sub>
<body>
some text
if(condition)
text...
else
text...
body continued...
</body>
</email>
Can I do this in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于此任务,最好使用模板引擎。存在纯文本模板引擎(例如 Apache Velocity),您也可以使用它们来生成 XML。还有专门的 XML 模板引擎,例如 XSLT(几乎每个编程环境都有不同的实现)或 Genshi (具有特殊的 XML 模式)。
请查看维基百科模板引擎页面以获取比较表。
For this task it is a good idea to use a template engine. There exist template engines for plain text (like Apache Velocity) which you can use for generating XML too. There are also specialized template engines for XML, like XSLT (with various implementions for nearly every programming environment) or Genshi (with a special XML mode).
Look at the Wikipedia template engine page for a comparison table.