Send mail
mail_sendImmediately sends an email from the signed-in Microsoft 365 mailbox after confirming recipients and content; no undo is available.
Instructions
Sends a message immediately from the signed-in mailbox — there is no undo and no confirmation step, so confirm the recipients and text with the user first. Graph returns no message id for a send: if you need one, use mail_create_draft instead. A copy lands in Sent Items unless saveToSentItems is false. Sending needs the Mail.Send permission, which is separate from read/write access.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | Carbon-copy recipients. | |
| to | Yes | Primary recipients. At least one is required. | |
| bcc | No | Blind carbon-copy recipients. | |
| body | Yes | Message body, in the format given by contentType. | |
| subject | Yes | Subject line. | |
| contentType | No | How to interpret body. "Text" (default) is safest; "HTML" renders markup. | Text |
| saveToSentItems | No | Keep a copy in Sent Items. Defaults to true. |