iam sending mail using cdonts in asp
there is no error but the mail is not send.
can some one help me in this.
this is the code
set objMail=Server.CreateObject("CDONTS.NewMail")
objMail.From=FromId
objMail.To=ToId
objMail.Subject=MailSubject
objMail.BodyFormat=0 ' for HTML
objMail.MailFormat = 0 ' for MIME
objMail.Body=MailMessage
objMail.Send
set objMail=nothing