0

如何使用 Exchange API 向其他用户发送 Outlook 邀请?其实我正在尝试这个。

   ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1);
   service.Credentials = new WebCredentials("example@server.com", "example");
   Appointment appointment = new Appointment(service);

但我需要使用他的电子邮件向另一个用户发送邀请。

4

1 回答 1

0

appointment.RequiredAttendees.Add(new Attendee("example@server.com"));用于向此人发送邀请。

于 2013-09-16T17:59:46.050 回答