Hi,
I'm working on this web space: NT4/Windows 98, Microsoft-IIS/4.0,
66.71.142.204
I can't send mail with CDO cause i get an error
<%
Set myMail = CreateObject("C DO.Message")
myMail.Subject = "eeeSending email with CDO"
myMail.From = "mymail@mydomai n.myext"
myMail.To = "mymail@mydomai n.myext"
myMail.TextBody = "eeeeThis is a message."
myMail.Send
Set myMail = Nothing
%>
And with CDONTS, mails don't come
<%
Set myMail = Server.CreateOb ject("CDONTS.Ne wMail")
myMail.Subject = "eeeSending email with CDONTS"
myMail.From = "mymail@mydomai n.myext"
myMail.To = "mymail@mydomai n.myext"
myMail.Body = "eeeeThis is a message."
myMail.Send
Set myMail = Nothing
%>
How can i solve?
Thanks
I'm working on this web space: NT4/Windows 98, Microsoft-IIS/4.0,
66.71.142.204
I can't send mail with CDO cause i get an error
<%
Set myMail = CreateObject("C DO.Message")
myMail.Subject = "eeeSending email with CDO"
myMail.From = "mymail@mydomai n.myext"
myMail.To = "mymail@mydomai n.myext"
myMail.TextBody = "eeeeThis is a message."
myMail.Send
Set myMail = Nothing
%>
And with CDONTS, mails don't come
<%
Set myMail = Server.CreateOb ject("CDONTS.Ne wMail")
myMail.Subject = "eeeSending email with CDONTS"
myMail.From = "mymail@mydomai n.myext"
myMail.To = "mymail@mydomai n.myext"
myMail.Body = "eeeeThis is a message."
myMail.Send
Set myMail = Nothing
%>
How can i solve?
Thanks
Comment