您好,我正在使用以下代码从 ASP 页面发送邮件

        Dim MyMail
        Set MyMail = Server.CreateObject("JMail.SMTPMail")
        MyMail.ServerAddress = ""
        MyMail.Sender = "senderemail"
        MyMail.AddRecipient  "[email protected]"
        MyMail.Subject = "Inquiry "
        MyMail.Body = "<p>This is a response</p>"
        MyMail.ContentType = "text/html"
        MyMail.Execute
        Set MyMail=nothing

但它不起作用。
我得到以下错误

Microsoft VBScript 运行时
错误“800a01ad”
ActiveX 组件无法创建对象


谁能帮帮我吗

最佳答案

终于找到了我的解决方案。

我需要 enable 32-bit Applications to true in the application pool ,它就像一个魅力。

谢谢大家帮助我。

关于asp-classic - JMail.SMTPMail 不工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19047001/

10-11 16:51