How can I set a ewsAppointment/ewsTask rtf body? Looks possible through an extended property, but I can't get this to work.
I was trying with getting the extended property like this -
ExtendedPropertyDefinition epd = new ExtendedPropertyDefinition(
DefaultExtendedPropertySet.PublicStrings,"PR_RTF_COMPRESSED",MapiPropertyType.Binary);
and setting it to a byte array of my rtf text - but that's not working.
Also - I'm trying to figure out if I should stick with html/rtf. Looking at EWS manged API - Appointment with Html Body and Outlook 2013 and links on that post, it sounds like it might be safer to always set RTF. Is this correct?
Thanks!