fluentcrm_create_campaign
Create email marketing campaigns in FluentCRM by setting campaign title, subject line, template, and recipient lists to engage your audience.
Instructions
Tworzy nową kampanię email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recipient_list | No | ID list | |
| subject | Yes | Temat emaila | |
| template_id | No | ID szablonu | |
| title | Yes | Tytuł kampanii |
Input Schema (JSON Schema)
{
"properties": {
"recipient_list": {
"description": "ID list",
"items": {
"type": "number"
},
"type": "array"
},
"subject": {
"description": "Temat emaila",
"type": "string"
},
"template_id": {
"description": "ID szablonu",
"type": "number"
},
"title": {
"description": "Tytuł kampanii",
"type": "string"
}
},
"required": [
"title",
"subject"
],
"type": "object"
}