我在一个名为template.html的文件中有一个电子邮件模板,如何在asp.net中将其用作邮件正文?
答案 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");