I try to remove an attendee programmatically from an appointment and update it with the option SendOnlyToChanged
. The problem is all attendees also receiving an email with an update about the meeting, and not only the changed.
appointmentOutlook.update( ConflictResolutionMode.AlwaysOverwrite,SendInvitationsOrCancellationsMode.SendOnlyToChanged );
I found the same question here on exchange server forum, but also without success.
Did anybody found a solution or workaround for this issue?
The trick is to use
ConflictResolutionMode.AutoResolve
.Don't ask me why it works this way, it was in an answer to a more recent question then yours.
(So I won't mark either answer as duplicate, but just refer to it).