Hello Guyz!
I`ve used the following code in order to send e-mails from my web page...
<%
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
%>
(it`s a copy-paste from
www.w3schools.com)
---------------------
Error Type:
CDO.Message.1 (0x80040220)
The "SendUsing" configuration value is invalid.
---------------------
The Error that occurs is the following... what`s the problem with that?
Thank you in advance!