i m new to asp . i m try to send mail using CDO. my os is XP pro. i have install IIs and smtp also running. if i running my program , its doesn't throw any error. but my mail is not sent.. that is , if i m checking my inbox, mail is not there. i don't know what is the problem . anybody help me.
here is my coding
<%
Set myMail=Server.CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="gowsi_mca@yahoo.co.in"
myMail.To=gfermi@gmail.com"
This is a message."
myMail.send
set myMail=nothing
response.write("<b>Mail send</b>")
%>