Content Type
Static (Markdown)
Unlocks Tools
These tools become available when this skill is activated:
send_email
Trigger Keywords
emailsenddelivernotificationcommunicationmarkdowncompose
Instructions Preview
# Send Email Skill
This skill enables sending emails programmatically using the `send_email` tool. Emails support markdown formatting which is automatically converted to HTML.
## Tool Usage
Use the `send_email` tool with the following parameters:
```json
{
"from": "Your Name <sender@example.com>",
"to": ["recipient@example.com"],
"subject": "Your subject line",
"markdown": "# Email Content\n\nYour markdown content here.",
"cc": ["cc@example.com"],
"bcc": ["bcc@example.com"],
"reply_to": "reply@example.com",
"artifact_run_id": "optional-workflow-run-id"
}
```
### Required Parameters
| Parameter | Description |
|-----------|-------------|
| `from` | Sender email address. Can include name: `"Name <email@domain.com>"` |
| `to` | Array of recipient email addresses |
| `subject` | Email subject line |
| `markdown` | Email content in markdown format |
### Optional Parameters
| Parameter | Description |
|-----------|-------------|
| `cc` | Array of CC recipient address...