13,721 questions
No, ms office 365 graph API does not support configuration in third-party SAP Cloud integration.
You can directly call the /sendMail
api endpoint to send emails:
POST https://graph.microsoft.com/v1.0/me/sendMail
Content-type: application/json
{
"message": {
"subject": "Meet for lunch?",
"body": {
"contentType": "Text",
"content": "The new cafeteria is open."
},
"toRecipients": [
{
"emailAddress": {
"address": "******@contoso.onmicrosoft.com"
}
}
],
"ccRecipients": [
{
"emailAddress": {
"address": "******@contoso.onmicrosoft.com"
}
}
]
},
"saveToSentItems": "false"
}