var theApp = new ActiveXObject("Outlook.Application");
var theMailItem = theApp.CreateItem(0);
theMailItem.To = to;
theMailItem.Subject = (subject);
theMailItem.CC = carbon;
theMailItem.Body = (msg);
theMailItem.display();
我正在使用上面的javascript代码通过outlook发送电子邮件一切正常,但邮件的主体不是HTML格式的,有人可以帮我这个。提前致谢
答案 0 :(得分:0)
不是设置纯文本Body
属性,而是将HTMLBody
属性设置为格式正确的HTML字符串。