如何使用Exchange API向其他用户发送Outlook邀请?其实我正在尝试这个。
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1);
service.Credentials = new WebCredentials("example@server.com", "example");
Appointment appointment = new Appointment(service);
但我需要使用他的电子邮件向其他用户发送邀请。
答案 0 :(得分:0)
我使用appointment.RequiredAttendees.Add(new Attendee("example@server.com"));
向该人发送邀请。