You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Hi Ruffmann,
right now, I don't fully understand your use case. You use ews-cpp to search for the invitation as well as the confirmation to process them in your app? In which folders do you search? Do you get other items that are located in the same store?
Regarding
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().
I use ews-cpp to sync mails and calendar events between the exchange store and my app, which is working fine. Except for when there is an email with an event-request attached to it. I'd like to process this request in the app so that the app sends out an answer (Accept / Decline).
Yes I refer to the item-class functions.
As far as I understand, MS exchange takes the event-information out of the mail-header and generates an item-attachment for the mail-item. At least that is how I believe it should work, but I might be wrong.
sorry for the late reply! Was quiet busy the last days. Ok, it might be the case that Exchange server does some magic with the ics files. I will try it myself the next days.
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:
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.
The text was updated successfully, but these errors were encountered: