send_email
Send emails through iCloud Mail to recipients with subject and text or HTML content. Use this tool to compose and deliver messages directly from your workflow.
Instructions
Send an email through iCloud Mail
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | HTML email body | |
| subject | Yes | Email subject | |
| text | No | Plain text email body | |
| to | Yes | Recipient email address(es) |
Input Schema (JSON Schema)
{
"properties": {
"html": {
"description": "HTML email body",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"text": {
"description": "Plain text email body",
"type": "string"
},
"to": {
"description": "Recipient email address(es)",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"to",
"subject"
],
"type": "object"
}