-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
If I try to synchronize a mail-item which has a meeting request in the iCalendar format attached to it,
none of the related functions return any information for this attachment.
This seems to be the case when the request is from outlook to outlook.
Now text/calendar information is usually transmitted in the mail-header or in an .ics file.
Outlook seems to only use the mail-header.
So it's like this:
- Organizer sends request (Outlook); information is in the mail-header
- Attendee receives request (Outlook); information is removed from the header and processed
- Now the Ex-Sync which I'm working on synchronizes between Outlook and the app I'm working on through the exchange-store. At this point information for the request is nowhere to be found.
Outlook takes the information out of the header so item::get_internet_message_headers() doesn't work.
There is no information in item::get_attachments() either.
There is nothing in item::get_body().content().
There is nothing in item::get_mime_content().
Am I doing something fundamentally wrong or does someone have an idea?
Thank you.