fluentcrm_create_email_template
Create custom email templates for FluentCRM marketing campaigns by defining template name, subject line, and HTML content.
Instructions
Tworzy nowy szablon email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Treść HTML | |
| subject | Yes | Temat | |
| title | Yes | Nazwa szablonu |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Treść HTML",
"type": "string"
},
"subject": {
"description": "Temat",
"type": "string"
},
"title": {
"description": "Nazwa szablonu",
"type": "string"
}
},
"required": [
"title",
"subject",
"body"
],
"type": "object"
}