I'm trying to send e-mail using asp but i have the following error msg acn
anyone help?
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/Test/testMail.asp, line 10
Invalid ProgID. For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
here's my program
Set objMail2 = Server.CreateObject("CDONTS.NewMail")
objMail2.from = "cocol@y..."
objMail2.Subject = "Test"
objMail2.To = "cocolua@h..."
objMail2.Body = "This is test, hope it works"
objMail2.Send
Set objMail = Nothing