'How to stop calendar event invitation Emails by outlook in Android?

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?

enter image description here

enter image description here

Thanks in advance.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source