How can I created an Appointment through EWS with a compressed RTF body?
问题 I would like to create an Appointment through EWS with a compressed RTF body instead of the default HTML format due to several bugs w/ Exchange around HTML formatted appointment bodies. The code I am using looks similar to that below: var appointment = new Appointment(exchangeService); ... string html = // html body string compressedRtf = // converted using Microsoft.Exchange.Data.TextConverters ... var epd = new ExtendedPropertyDefinition(0x1009, MapiPropertyType.Binary); appointment