SMTP MCP Server

by samihalawa
Verified

add-email-template

Add a new email template

Input Schema

NameRequiredDescriptionDefault
bodyYesEmail body template
isDefaultNoWhether this template should be the default
nameYesName of the template
subjectYesEmail subject template

Input Schema (JSON Schema)

{ "properties": { "body": { "description": "Email body template", "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": [ "name", "subject", "body" ], "type": "object" }