Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_cdo thread: "Internal Error occured" with CDONTS and SMTP


Message #1 by "Rudy Bistrovich" <Rudy.Bistrovich@w...> on Tue, 19 Jun 2001 15:01:26
I am getting the follow error output when trying to send email using the 

CDONTS object.



error '80090020' 

An internal error occurred. 



/CDONTSMail.asp, line 50





The code I'm using is as follows:

<%@ Language=VBScript %>

<%

	 Dim Mail

	 Set Mail = Server.CreateObject("CDONTS.Newmail")

	 Mail.From = request.form("UserName")

	 Mail.To = request.form("UserEmail")

	 Mail.Subject = "Your mail works!"

	 Mail.Body = "CDO for NT is available on your server"

	 Mail.Send

	 Set Mail = Nothing

%>



Has anyone else gotten this error? If so...where does the problem lie? Is 

it in the code or on the server itself?

  Return to Index