
January 25th, 2004, 06:57 PM
|
|
Junior Member
|
|
Join Date: Mar 2003
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Help... Cdonts.dll issue or other?
I need some feed back in how I can correct this error that I keep getting trying to use the cdonts for and email form I am trying to set up.
Here is the DIM that is set up on an asp of its own:
Quote: <%
DIM strEmail, strName, strComments, mail, reply, objMail
strEmail = request.form("Email")
strName = request.form("Name")
strComments = request.form("Comments")
mail = "spiritwinds@sympatico.ca"
reply = request.form("Email")
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = reply
objMail.Subject = "YOUR SUBJECT MESSAGE HERE"
objMail.To = mail
objMail.Body = "Email: " & strEmail & vbCrLf & _
"Name: " & strName & vbCrLf & _
"Comments: " & vbCrLf & strComments
objMail.Send
Set objMail = nothing
%> |
I do have the name of the form on the other asp where you fill in the fields that need to be filled in to send the email.
They are all correctly pointing to one another .... BUT .. here is the problem .......
Quote: error '80090020'
An internal error occurred.
/confirmation.asp, line 17 |
Line 17 is the following....
Quote: objMail.Send
Set objMail = nothing |
I am on IIS5
Can anyone help with resolving this issue? I would really appreciate the help with this... I am stumped / lol.
I have given all the info that is needed to see where the error maybe occuring / line 17.
Thanks,
Wolfe
|