Hi,
I am trying to execute this SIMPLE script:
<html>
<head>
<title>CDONTS TEST</title>
</head>
<body>
<% @ LANGUAGE="VBSCRIPT" %>
<!--#include file="cdovbs.inc"-->
<%Dim objNewMail
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = "recipient@m..."
objNewMail.To = "Administrator@m..."
objNewMail.Body = "Test"
objNewMail.Send%>
</body>
</html>
And I get this message on my browser:
error '80070003'
The system cannot find the path specified.
/Tests/aspmail.asp, line 9
I have not installed SMTP From IIS4, I have MS-EXCH SRV 5.5 instead.
Any IDEA?
Thanks in Advance.
Sebs.