I used the following sample code in my ASP file.
***
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail"
myMail.From = "Example@microsoft.com"
myMail.To = "seaport2001@netscape.net"
myMail.Subject = "Sample Message"
myMail.Body = "This is a sample message."
response.write myMail.version
myMail.Send
Set myMail = Nothing
***
No message has been sent to my email box. The page does show the version of the CDONTS, which is 1.2. It seems that CDONTS does work on the server.
The code used to work fine before.
Is there any configuration change on the server may affect CDONTS?
Thanks in advance.
Seaport
***
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail"
myMail.From = "Example@microsoft.com"
myMail.To = "seaport2001@netscape.net"
myMail.Subject = "Sample Message"
myMail.Body = "This is a sample message."
response.write myMail.version
myMail.Send
Set myMail = Nothing
***
No message has been sent to my email box. The page does show the version of the CDONTS, which is 1.2. It seems that CDONTS does work on the server.
The code used to work fine before.
Is there any configuration change on the server may affect CDONTS?
Thanks in advance.
Seaport