문제

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