Forums
This topic is locked
80070070 error
09 Oct 2002 16:23:25 Roger Mr posted:
I'm trying to make CDONTS work successfully with this code from Dynamic Dreamweaver MX: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%
Set objCDO = Server.CreateObject("CDONTS.NewMail"
objCDO.From = "website"
objCDO.To = "my email"
objCDO.Subject = "Test CDONTS"
objCDO.Body = "<img src=""www.udnewbie.com/images/logos/main_logo_272x42.gif""> <p> Hi, I was sent because the page <b>execute_cdonts.asp</b> on my server was accessed."
objCDO.BodyFormat = 0
objCDO.MailFormat = 0
objCDO.Send
Set objCDO = Nothing
%>
The numbered error is thrown from CDONTs referencing line 13 which is the objCDO.send
Any Ideas??