在asp.net中使用html页面作为邮件正文

时间:2010-10-11 20:31:42

标签: asp.net email mailmessage

我在一个名为template.html的文件中有一个电子邮件模板,如何在asp.net中将其用作邮件正文?

2 个答案:

答案 0 :(得分:3)

有一个带代码的示例here

或者你可以使用MailDefinition类。

答案 1 :(得分:3)

您可以使用:

File.ReadAllText("template.html")

//This is to read template.html then you can pass this through
//formatemail() function if you have or
//message.body = File.ReadAllText("template.html");