Ask a Question related to ASP Components, Design and Development.
-
Siavash #1
CDONTS Error in ASP, error '8009000f'
error '8009000f'
Object already exists.
/aspmail/appointment.asp, line 13
I receive this error when i compile this code:
<%
Dim MyBody
Dim MyCDONTSMail
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "somebody@nowhere.com"
MyCDONTSMail.To= "sghamaty@cox.net"
MyCDONTSMail.Subject="This is a Test"
MyBody = "Thank you for ordering that stuff" & vbCrLf
MyBody = MyBody & "We appretiate your business" & vbCrLf
MyBody = MyBody & "Your stuff will arrive within 7 business days"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send <---------------line 13 this is notes not in code
set MyCDONTSMail=nothing
%>
What is going on? This is actually the sample code that was given to me
from my server.
Siavash Guest
-
CDONTS error - too much data?
I have been using the CDONTS component on Windows 2000 to send emails for a long time now (code below). However, over time, the report that I am... -
ASP CDONTS error
Hi, I have been building a shopping cart & the final page will email the order to an address given however I get the following error message using... -
VBScript Error with CDONTS
Hello, Using IIS4 on a NT4 system.... sometimesI get the following error: Microsoft VBScript runtime error '800a0005' Invalid procedure call... -
CDONTS Problem - no error msg
I verified that CDONTS and SMTP are supported by the server. I do not receive an error message when I open the following ASP page nor do I receive... -
error '8007045a' when executing CDONTS
I have the following sample code to send email from a form via CDONTS. I got error '8007045a' when executing the ASP page. Please help. THanks. ...



Reply With Quote

