Hi I am trying to send a message to email IDs that people fill in. It is working to most of the email IDs but I guess people who have accounts on rediff (www.rediff.com) are not receiving the message from my site. Can anyone tell me what the problem could be?
My code is :
<%
set abcMail=Server.CreateObject(“CDONTS.NewMail”)
abcMail.Subject=“Message from Aditya”
abcMail.From=request.Form(“ademail”)
abcMail.Body="Aditya says " & request.Form(“adreply”)
abcMail.To=request.Form(“recemail”)
abcMail.Send
set abcMail=nothing
%>
Thanks guys.