Does anyone know why???
I used the following script to send out an email and it was
successfully in
A web server. I migrated the script to B web server. when I run the
script,
I received the following error:
An error occurred when processing the URL. Please contact your system
administrator.
FYI, B web server is running SSL (https not http). Does it matter? Is
this
because of access right/web server configuration issue? What does the
error
message trying to say? Please help.
my asp script:
<%
Dim objMail
Set objMail =3D Server.CreateObject("CDONTS.NewMail")
objMail.From =3D "philip.moh@a..."
objMail.Subject =3D "How TO send email with CDONTS"
objMail.To =3D "philip.moh@a..."
objMail.Body =3D "can you read" & vbcrlf&_
"this mail." & vbcrlf&_
"testing ... "
objmail.importance =3D 2
objMail.Send
Response.write("Mail was Sent")
set objMail =3D nothing
%>