Power Fx function
Office365Outlook.SendEmailV2 — Power Fx function reference
Send an email as the user.
Syntax
powerfx
Office365Outlook.SendEmailV2( To, Subject, Body [, Options ] )
Examples
powerfx
Office365Outlook.SendEmailV2("a@x.com", "Hi", "Body")→ Email sent
powerfx
Office365Outlook.SendEmailV2(cmbAssignee.Selected.Email, "Task assigned: " & txtTitle.Text, "Due " & Text(DatePicker1.SelectedDate, "mmm d, yyyy"))
powerfx
Office365Outlook.SendEmailV2(Concat(colRecipients, Email, ";"), "Weekly summary", htmlBody, {IsHtml: true})Common mistakes & gotchas
- The optional fourth argument is a record supporting fields like Cc, Bcc, Attachments, and IsHtml — calls without it send as plain text.
- Sends as the signed-in user's own Outlook mailbox (using their send quota, appearing in their Sent Items) — for app-triggered emails that shouldn't appear to come from whoever clicked the button, use a Power Automate flow with a shared mailbox or service account instead.
Related Power Fx functions
From Connectors (real patterns)