We are using Microsoft graph calendar API for creating an event in the Microsoft(outlook) calendar. We don't want to send default RSVP mail of calendar event invitations to the user so,
Is there any way to stop this email by using android?
In the Google calendar event, we can stop email notifications by setSendNotifications(false)
i.e.,
mService.events().insert(calendarId,event).setSendNotifications(false).execute();
Kindly suggest how can we achieve it?
Thanks in advance.