Send email using SharePoint REST API in jQuery/JavaScript: We can able to send email to the SharePoint user using below REST API on SharePoint Online. We need to load SP.js file in code. we must need to give valid SharePoint user to send email. We can able to send email to valid SharePoint user of same organization. var restAPI = _spPageContextInfo . webAbsoluteUrl + "/_api/SP.Utilities.Utility.SendEmail" ; $ . ajax ({ contentType: 'application/json' , url: restAPI , type: "POST" , data: JSON . stringify ({ 'properties' : { ...