create-template
Create email templates with subject lines and optional HTML/text content for transactional emails and testing workflows.
Instructions
Create a new email template
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Template category (optional, defaults to 'General') | |
| html | No | HTML content of the template (optional) | |
| name | Yes | Name of the template | |
| subject | Yes | Email subject line | |
| text | No | Plain text version of the template (optional) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Template category (optional, defaults to 'General')",
"type": "string"
},
"html": {
"description": "HTML content of the template (optional)",
"type": "string"
},
"name": {
"description": "Name of the template",
"type": "string"
},
"subject": {
"description": "Email subject line",
"type": "string"
},
"text": {
"description": "Plain text version of the template (optional)",
"type": "string"
}
},
"required": [
"name",
"subject"
],
"type": "object"
}