Hello,
I've been tasked with exporting items from exchange to .msg format. This is currently working fine for messages in the inbox. However, when I attempt to save messages in the calendar, I get the following error:
The MIME transfer encoding 'EightBit' is not supported.
This error is thrown when executing this code:
MailMessage MailMessageRef = ExchangeClientRef.FetchMessage(MessageURI);
MailMessageRef.Save(CalendarOutputDirectory + OutputFileName, MessageFormat.Msg);
This code does work:
ExchangeClientRef.SaveMessage(MessageURI, CalendarOutputDirectory + OutputFileName);
Am I missing something simple?
Thanks