我使用下面的代码从ASP页面发送邮件
Dim MyMail
Set MyMail = Server.CreateObject("JMail.SMTPMail")
MyMail.ServerAddress = ""
MyMail.Sender = "senderemail"
MyMail.AddRecipient "mail@mail.com"
MyMail.Subject = "Inquiry "
MyMail.Body = "<p>This is a response</p>"
MyMail.ContentType = "text/html"
MyMail.Execute
Set MyMail=nothing
但它不起作用。我的错误越来越少
Microsoft VBScript运行时错误'800a01ad‘ActiveX组件无法创建对象
发布于 2013-09-27 10:28:30
我需要在应用程序池中启用32位应用程序。
https://stackoverflow.com/questions/19047001
复制相似问题