如何使用Exchange API将邀请发送给其他用户

时间:2013-09-16 14:29:54

标签: outlook exchangewebservices exchange-server-2010

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

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

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

1 个答案:

答案 0 :(得分:0)

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