如何在 Outlook 约会项目中查找所需与会者的电子邮件 ID?
How to find the email Ids of the required attendees in a outlook appointment item?
这是我的代码:
Meeting Meeting = new Meeting();
Outlook.AppointmentItem oulookMeeting;
Meeting.Email_Address = (oulookMeeting.RequiredAttendees == string.Empty ? string.Empty : oulookMeeting.RequiredAttendees);
在这里我只得到了 RequiredAttendees 的名字。是否有可能以某种方式获得他们各自的电子邮件 ID?
请帮忙
遍历 AppointmentItem.Recipients 集合并使用 Recipient.Type 属性 == OlMailRecipientType.olTo
查找收件人
这是我的代码:
Meeting Meeting = new Meeting();
Outlook.AppointmentItem oulookMeeting;
Meeting.Email_Address = (oulookMeeting.RequiredAttendees == string.Empty ? string.Empty : oulookMeeting.RequiredAttendees);
在这里我只得到了 RequiredAttendees 的名字。是否有可能以某种方式获得他们各自的电子邮件 ID? 请帮忙
遍历 AppointmentItem.Recipients 集合并使用 Recipient.Type 属性 == OlMailRecipientType.olTo
查找收件人