IIS Configuration for Sending Mail using CDONTS
Hi,
i'm using CDONTS.Newmail, object to send the mails to the extranal account like [email protected].. but the mails are not delivered to the given account.
is there any configuration is required to be done in the IIS server for SMTP server to send the mails..
the code is
Code:
dim mail
set mail = Server.CreateObject("CDONTS.Newmail")
mail.From = "[email protected]"
mail.To = "[email protected]"
mail.Subject = "This is a test mail"
mail.Body = "This a test mail body"
mail.Send
Response.Write "<br>U'r mail is sent"
Thanks in adv.
Venu