Hello !

I've a prob with CDONTS.

I've written an exe-file which lies in the cgi-directory of my webserver.

VB-Code:
-----------

Sub sSendmail()
Dim mailer As Object

Set mailer = CreateObject("CDONTS.Newmail")

With mailer
.To = "[email protected]"
.from = "SOMEBODY"
.subject = "Test Message"
.Body = "This is a test message
.Send
End With

Set mailer = Nothing

End Sub

----------------


The same code on the same webserver with ASP und VBScript works fantastic, but with the VB-EXE-File I always get a "Permission denied Error No =70".

Any idea ?

Thx for help.

Petra