Benutzt dazu einfach die âSend an HTTP Request to SharePointâ Aktion und den REST-API Endpunkt â/_api/SP.Utilities.Utility.SendEmailâ
In diesem Beispiel schicke ich damit eine Email an alle Mitglieder der SharePoint Gruppe âSharePoint Groupâ
{
'properties': {
'To':['SharePoint Group'],
'Body': '<h1>Hello Group</h1>',
'Subject': 'Hello Group'
}
}