send-email
Compose and send emails using Microsoft Outlook via the Microsoft Graph API. Specify recipients, subject, body, importance, and shared mailbox for efficient email management.
Instructions
Composes and sends a new email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc | No | Comma-separated list of BCC recipient email addresses | |
body | Yes | Email body content (can be plain text or HTML) | |
cc | No | Comma-separated list of CC recipient email addresses | |
importance | No | Email importance (normal, high, low) | |
saveToSentItems | No | Whether to save the email to sent items | |
sharedMailbox | No | Email address of shared mailbox to send from (e.g., 'shared@company.com') | |
subject | Yes | Email subject | |
to | Yes | Comma-separated list of recipient email addresses |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "Comma-separated list of BCC recipient email addresses",
"type": "string"
},
"body": {
"description": "Email body content (can be plain text or HTML)",
"type": "string"
},
"cc": {
"description": "Comma-separated list of CC recipient email addresses",
"type": "string"
},
"importance": {
"description": "Email importance (normal, high, low)",
"enum": [
"normal",
"high",
"low"
],
"type": "string"
},
"saveToSentItems": {
"description": "Whether to save the email to sent items",
"type": "boolean"
},
"sharedMailbox": {
"description": "Email address of shared mailbox to send from (e.g., 'shared@company.com')",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"to": {
"description": "Comma-separated list of recipient email addresses",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}