EWS managed API - Appointment with Html Body and Outlook 2013

后端 未结 2 954
长情又很酷
长情又很酷 2021-01-27 04:05

I\'m trying to create an Appointment with an Html Body containing a Hyperlink, like it is shown in this Example:

ewsAppointment = new EwsData.Appointment(service         


        
相关标签:
2条回答
  • 2021-01-27 04:14

    The MS-OXCAL (section 2.2.1.38) standard document seems to suggest that appointments need to be specified in Rich Text Format. You might want to try writing the body in that, perhaps using a library like .NET RTF Writer.

    I think the reason you're getting a weird change is because something in the chain is converting your HTML to RTF. This question has a lot more detail.

    0 讨论(0)
  • 2021-01-27 04:18

    The property PR_RTF_COMPRESSED is what you need. It is MAPI property supported as extended property in EWS Managed API and Exchange Web Services .NET

    0 讨论(0)
提交回复
热议问题