我在应用程序的以下行收到错误:
'create NewMail object'
Line 96: Function SendHTMLEMail (strFrom, strTo, strCC, strSubject, strBodyHTML)
Line 97: Set objNewMail = Server.CreateObject("CDONTS.NewMail")
错误是:
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
/Utils.inc, line 97
我已将interop.CDONTS.dll添加到应用程序的引用中,但我仍然遇到同样的错误。
我不确定此功能是否在任何其他页面中使用并且正在运行。
我使用.NET 2003 framework 1.1,服务器运行的是Windows Server 2003
答案 0 :(得分:4)
<强> ASP-经典强>
由于自Win2000及更新版本以来已停止使用CDONTS,因此您应该switch to CDOSYS。
通过远程服务器发送的示例代码
Set oMessage = CreateObject("CDO.Message")
Set oConfig = CreateObject("CDO.Configuration")
Set oFields = oConfig.Fields
With oFields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.acme.com"
.Update
End With
With oMessage
Set .Configuration = oConfig
.To = "recipient@acme.com"
.From = "sender@acme.com"
.Subject = "A Subject Line"
.TextBody = "A Text body message"
.Fields.Update
.Send
End With
链接网站提供了各种方案的详细示例。
<强> ASP.NET 强>
如果您的目标是ASP.NET,则应使用System.Net.Mail代替CDO
答案 1 :(得分:0)
我得到了解决方案。我添加了一个新的CDONTS.dll并使用
注册了它regsvr32 C:\ SYSROOT \ system32 \ cdonts.dll
这解决了这个问题。无需将其添加到参考文献中。