I need to access the email message in RFC5322
format from my Outlook Web Add-in and send it to my back-end.
The add-in needs to support on-premise Exchange servers as well. I tried sending a GetItem
request with IncludeMimeContent
set to true using the makeEwsRequestAsync
API.
The response I get is what I need. But this page mentions IncludeMimeContent
is expensive operation.
I am not expecting continuous and many concurrent GetItem
requests to the Exchange server. There could be an occasional spike in no. of requests.
Can I go ahead with this approach? Would it have adverse impact on the exchange server?
Any other alternative approach that I can look into?