Вопрос

How can i send a outlook invite to another user using exchange API? Actually i'm trying this.

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

But i need send invite to ANOTHER user, using his email.

Это было полезно?

Решение

I use appointment.RequiredAttendees.Add(new Attendee("example@server.com")); for send invite to the person.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top