ASP.NET 将 .htm 文件作为电子邮件模板发送
您好,您可以使用 mailMessage 类发送 .htm 文件作为 html 模板吗?我似乎不知道该怎么做?
Hi can you send a .htm file as the html template using the mailMessage class? I cant seem to work out how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您已经创建了一个带有标记的 html 模板(例如
[[[FROM]]]
),那么您需要使用 StringBuilder。例如:然后,您只需替换标记并将电子邮件正文填充到更改后的模板即可。
Assuming you have created an html template that has markers (e.g.
[[[FROM]]]
), you then need to use StringBuilder. For example:And then, you just need to replace the markers and fill the email body to the changed template.
我建议您使用 String 或 StringBuilder 类并创建您自己的模板子系统。我的意思是,只需将模板内容分配给字符串,并用实际值替换出现的标记。
如果您想要一个示例,请查看 Drupal 如何提供 !username 等变量。如果您需要代码示例,请随时在此处发表评论。
希望这有帮助,
I recommend you to use the String or StringBuilder classes and make your own template subsystem. I mean, just assign the template content to the String, and replace occurrences of tokens by real values.
If you want an example, please see how Drupal offers variables like !username, and so on. If you need code examples, please don't you hesitate posting a comment here.
Hope this helps,