hello,
please help me to solve following problem. I have a send mail script using CDO. I don't know why it is not working. Everytime I run the script, it looks ok, but then couple day later I receive a message as follow:
This is an automatically generated Delivery Status Notification.
Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server.
Could anyone please help me with this. Thank you very much in advance.
The script that I use is:
<%
set iMsg = CreateObject("CDO.Message")
iMsg.From ="
[email protected]"
iMsg.To = "
[email protected]"
iMsg.Subject= "test mail"
iMsg.TextBody ="test mail"
iMsg.Send
Set iMsg = Nothing
%>