I am trying to use the code as below. I am trying to test it out by sending an email to myself. I don't receive the email. What could be wrong?
Set Mail = Server.CreateObject("CDONTS.NewMail"
Mail.From="markbeeson@hotmail.com"
Mail.To = "markbeeson@hotmail.com"
Mail.Subject = "From ASP Createobject function"
Mail.Body = "From CDONTS"
Mail.Send
Thanks.
Set Mail = Server.CreateObject("CDONTS.NewMail"
Mail.From="markbeeson@hotmail.com"
Mail.To = "markbeeson@hotmail.com"
Mail.Subject = "From ASP Createobject function"
Mail.Body = "From CDONTS"
Mail.Send
Thanks.