Hello Guyz...
I have used the following code:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="
[email protected]"
myMail.To="
[email protected]"
myMail.TextBody="This is a message."
myMail.Send
%>
But something is not working because the e-mail is not sent. I`ve already installed to my machine "Default SMTP Virtual Server". Should I change some settings to it?
Note, that I`m using a "proxy server" in order to connect to the internet. Is this a problem??? Should I also change some settings to that "proxy server"?
Thank you in advance!!!