我可以通过Webmail帮助程序发送电子邮件。但是,我想用包含HTML表的正文发送消息。有人可以澄清这是否可以在Webmatrix webmail助手中使用。
答案 0 :(得分:1)
是的,这是可能的。只需在isBodyHtml: true
方法中指定Send
:
var customerRequest = "<p>Help!"</p>";
WebMail.Send(to: email,
subject: "Help request from - " + customerName,
body: customerRequest,
isBodyHtml: true
);
请点击此处获取更多指导:http://www.asp.net/web-pages/tutorials/email-and-search/11-adding-email-to-your-web-site