UniSender
Send emails and manage contact lists via UniSender — a leading Russian email marketing platform
un
UniSender is one of Russia's leading email and SMS marketing platforms, serving thousands of businesses. Its API supports transactional email delivery, contact list management, and campaign sending.
With the UniSender integration in AACFlow, you can:
- Send email: Deliver transactional emails to individual recipients
- Add contact: Add a new contact to a mailing list
- Get lists: Retrieve all available contact lists
- Send campaign: Dispatch a mass email campaign to a list
This integration enables automated email notifications and marketing campaign management.
Usage Instructions
Integrate UniSender into the workflow. Requires an API key from your UniSender account at cp.unisender.com under Settings → API → API Key.
Tools
unisender_send_email
Send a transactional email
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | UniSender API key |
email | string | Yes | Recipient email address |
subject | string | Yes | Email subject |
body | string | Yes | Email HTML body |
senderName | string | Yes | Sender display name |
senderEmail | string | Yes | Sender email address |
Output
| Parameter | Type | Description |
|---|---|---|
jobId | string | Job ID for the sent email |
success | boolean | Whether the email was queued |
unisender_add_contact
Add a contact to a list
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | UniSender API key |
email | string | Yes | Contact email |
listId | string | Yes | Mailing list ID |
firstName | string | No | Contact first name |
lastName | string | No | Contact last name |
Output
| Parameter | Type | Description |
|---|---|---|
contactId | string | Created contact ID |
success | boolean | Whether the contact was added |
unisender_get_lists
Get all mailing lists
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | UniSender API key |
Output
| Parameter | Type | Description |
|---|---|---|
lists | array | Array of mailing list objects |
Links
- Official API: https://www.unisender.com/api/
- AACFlow block source: apps/aacflow/blocks/blocks/unisender.ts

