K
KZ
I have a small program (written in VB) to automate sending emails thru
Outlook.
Program works fine everywhere but one office.
At this location Outlook and my program are installed on terminal server.
Users with administrator rights work without any errors,
but other users are getting an error "You don't have appropriate permission
to perform this operation".
At the same time the same users can send emails directly from Outlook
without any problems.
After investigation I found out that:
- My application can create Outlook application object without any problems
Set objOLApp = CreateObject("Outlook.Application")
- the error happens when I try to create email item
Set myItem = objOLApp.CreateItem(olMailItem)
Does anybody know what permissions are missing to perform this operation?
Thanks,
Krystyna
Outlook.
Program works fine everywhere but one office.
At this location Outlook and my program are installed on terminal server.
Users with administrator rights work without any errors,
but other users are getting an error "You don't have appropriate permission
to perform this operation".
At the same time the same users can send emails directly from Outlook
without any problems.
After investigation I found out that:
- My application can create Outlook application object without any problems
Set objOLApp = CreateObject("Outlook.Application")
- the error happens when I try to create email item
Set myItem = objOLApp.CreateItem(olMailItem)
Does anybody know what permissions are missing to perform this operation?
Thanks,
Krystyna