Create PinPoint Email Template
Description
Input Schema
{
"description": "Create PinPoint email template node input.",
"properties": {
"template_name": {
"description": "The name of the message template.",
"title": "Template Name",
"type": "string"
},
"html": {
"description": "The message body, in HTML format, to use in email messages that are based on the message template.",
"title": "The message body, in HTML format.",
"type": "string"
},
"text": {
"description": "The message body, in plain text format, to use in email messages that are based on the message template.",
"title": "The message body, in plain text format.",
"type": "string"
},
"subject": {
"description": "Email subject.",
"title": "Email subject",
"type": "string"
},
"template_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "A custom description of the message template.",
"title": "Template description"
}
},
"required": [
"template_name",
"html",
"text",
"subject"
],
"title": "CreatePinPointEmailTemplateNodeInput",
"type": "object"
}Output Schema
How It Works
Usage Examples
Example 1: Welcome Email Template
Example 2: Order Confirmation Template
Example 3: Newsletter Template
Common Use Cases
Error Handling
Error Type
Cause
Solution
Notes
Last updated