|
-
Mar 20th, 2000, 10:23 PM
#1
Thread Starter
New Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|