SMTP MCP Server

update-email-template

Update an existing email template

Input Schema

NameRequiredDescriptionDefault
bodyNoEmail body template
idYesID of the template to update
isDefaultNoWhether this template should be the default
nameNoName of the template
subjectNoEmail subject template

Input Schema (JSON Schema)

{ "properties": { "body": { "description": "Email body template", "type": "string" }, "id": { "description": "ID of the template to update", "type": "string" }, "isDefault": { "description": "Whether this template should be the default", "type": "boolean" }, "name": { "description": "Name of the template", "type": "string" }, "subject": { "description": "Email subject template", "type": "string" } }, "required": [ "id" ], "type": "object" }