Reputation: 2715
I am using EWS Managed API to create outlook appointment but in some case when any one of the attendee email id is wrong then i got notification on outlook that notification not sent to this attendee(wrong one) but not through api.
So, is there any way to check if meeting successfully sent to all attendees?
http://msdn.microsoft.com/en-us/library/dd633661(v=exchg.80).aspx
Upvotes: 1
Views: 790
Reputation: 3465
I think you mean that in Outlook, you received an NDR message. The EWS Managed API will not receive notifications unless you implement EWS notifications. Your description mentions nothing about using EWS notifications. I suggest you read Notification subscriptions, mailbox events, and EWS in Exchange for more information. Your calls to create meetings with attendees won't provide notifications about identities that don't resolve to a user in an organization. That information is provided by Exchange after it tries to resolve the identities. You have to options, and in fact, you may want to implement both depending on your scenario:
I hope this helped.
Upvotes: 1