我有一个Outlook Addin。我的要求是在outlook预约发送按钮之后,我必须编辑预约正文中的URL并将编辑后的URL发送给所有参与者。
虽然约会主体中的URL正在使用我的代码进行编辑(我可以在调试模式下看到),但旧内容正在发送给参与者。 旧内容表示在发送按钮单击之前预约正文。
如何发送已编辑的约会机构?
答案 0 :(得分:0)
场景:
如果开发人员想要更改约会正文单击Outlook约会窗口的发送按钮。
以下三行将帮助开发人员将更新的约会机构发送给参与者:
private void Appointment_ItemSend(object item, ref bool cancel)
{
// Write code to update the URL which is present in Appointment Body
Outlook.MeetingItem ItemSendObject = item as Outlook.MeetingItem;
ItemSendObject.Body = appointmentItem.Body;
item = ItemSendObject;
}