create meeting request from another mailbox in VBA?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I have delegate access to another mailbox, can I create a meeting request
from that mailbox using VBA? Would it help if I got Owner access?

I saw some mention of using CDO to read the property, but nothing on setting
it. At first I thought it would be just like adding the From field in an
email.

Thanks!!
 
Use the GetSharedDefaultFolder method to return a Calendar folder for that
user by passing a Recipient object which resolves against the Address Book.
You'll of course need to have Write permissions on that folder. You can then
use the Items.Add method to create an Appointment Item in their folder.
 
Back
Top