Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-04-22 06:47 AM
Hello all 🙂
Do any of you know a way to get Outlook meeting responses (Accepted, Rejected etc.) into BluePrism as a collection, like you would with recieved / sent mails.
At first glance, the Outlook VBA does not seem to support it, but I might be wrong?
Best regards, Mats
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-04-22 09:42 AM
Hi Mats - the Outlook VBO does not provide calendar functionality but I think a VBO could be created to do what you are looking for.
In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients
A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus
And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus
In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients
A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus
And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-04-22 09:42 AM
Hi Mats - the Outlook VBO does not provide calendar functionality but I think a VBO could be created to do what you are looking for.
In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients
A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus
And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus
In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients
A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus
And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus
