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?