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