Frågan#1
Har problem med CDONTS.NewMail...
Får felmeddelandet
"error '80070003'
The system cannot find the path specified./aaa.asp, line 10 "
Med följande kod...
<%
Dim objNewMail
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = "blabla@blabla.com"
objNewMail.To = "test@devasp.com"
objNewMail.Subject = "This is a test Mail"
objNewMail.Body = "This is the Body text of this test mail."
objNewMail.Send
Set objNewMail = Nothing
Response.Write "Email has been sent"
%>
Vad är felet?
Server: win 2000. :P