using EWS, creating an AppointmentItem and adding a resource too. The Appointment get added to Resource Calendar and an email notification goes to Resource Inbox.
But i don't want any email notification just want to get added to Calendar.
I tried using SendInvitationsMode.SendToNone
but it then doesn't add in Calendar even.
then i tried using
Mailbox mbox = new Mailbox(user);
but then it send email notification too besides adding in Calendar.
FolderId folder = new
FolderId(WellKnownFolderName.Calendar, mbox);
appointment.Save(folder);
So, What I want is: "get added in Calendar but don't send me notification".