2013-09-16 84 views
0

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

ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1); 
    service.Credentials = new WebCredentials("[email protected]", "example"); 
    Appointment appointment = new Appointment(service); 

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

回答

0

我使用appointment.RequiredAttendees.Add(new Attendee("[email protected]"));向该人发送邀请。

相关问题