Send email with SharePoint Power Automate and REST API

03/16/2025 Update: Microsoft has announced the retirement of this end point.

How to send email email using the SharePoint Online REST API and Power Automate flow.

URI

_api/SP.Utilities.Utility.SendEmail

Headers

None

Body

{
  "properties": {
    "From": "DoNotReply@company.com",
    "To": [
      "email-address@here.com"
    ],
    "CC": [
      "email-address@here.com"
    ],
    "Subject": "Subject goes here",
    "Body": "<p>This is the body.</p>"
  }
}

Screenshot with example

Screen shot of Power Automate HTTP function.