Outlook VSTO加载项在Mail中显示错误的预览

时间:2016-05-24 16:48:21

标签: c# vsto outlook-addin appointment

我正在开发一个VSTO Outlook加载项项目。我遇到的问题是:使用加载项创建的约会在邮件屏幕上显示错误的预览。

Preview shows font details instead of the body

只有在我更改视图时才会出现问题(在附加图像的左上角更改视图,然后选择"预览")。我不确定我错过了什么。其他不是由我的加载项生成的邀请显示正确。

以下是我创建约会的方式:

newAppointment.RTFBody = System.Text.Encoding.UTF8.GetBytes(BuildBody());
newAppointment.MeetingStatus = OlMeetingStatus.olMeeting;
newAppointment.Location = "My Location";
newAppointment.Display(false);

0 个答案:

没有答案