I have a simple script, to test out the email send method of CDO. The script
fails and reports permission denied upon attempting to send.
Script is as follows:
Dim MyBody
Dim MyCDONTSMail
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.Subject="This is a Test"
MyBody = "Thank you for ordering that stuff" & vbCrLf
MyBody = MyBody & "This is a Test" & vbCrLf
MyBody = MyBody & "This is only a test."
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
The server that this script is running is:
Windows 2000 Server
Running Exchange 2000 and IIS 5.0
What specific permissions and security settings do i need to set so the
email message can be written and relayed?
Thanks,
Sam