sharky12345
Well-known Member
- Joined
- Aug 5, 2010
- Messages
- 3,422
- Office Version
- 2016
- Platform
- Windows
I'm using this to create an invite and save it to my Outlook Calendar;
It creates the item and saves it to my calendar no problem, it also has the email of the required attendee in the relevant field, but it doesn't send it to them. What I need is for it to send them the invite automatically, I would have thought the 'Item.Send' command would do it but it doesn't.
Anyone assist?
Code:
Item.RequiredAttendees = "emailaddressofrecipienthere"
Item.Recipients.Add "emailaddressofrecipienthere"
Item.Save
Item.Send
It creates the item and saves it to my calendar no problem, it also has the email of the required attendee in the relevant field, but it doesn't send it to them. What I need is for it to send them the invite automatically, I would have thought the 'Item.Send' command would do it but it doesn't.
Anyone assist?