以下是JavaScript代码:
function SendMail(to,body,sub)
{
var theApp
var theMailItem
var theApp = new ActiveXObject("Outlook.Application")
var theMailItem = theApp.CreateItem(0)
theMailItem.to = to
theMailItem.Subject = (subject);
theMailItem.Body = (msg);
//theMailItem.display()
theMailItem.send()
}
但是,我想为什么我们可以为Outlook创建一个ActiveX,以及它们之间的关系。
如果我们可以创建一个ActiveX来自动化Outlook,我们可以将Outlook嵌入到网页中吗?
任何解释都是值得赞赏的。