da
Dashamail is a Russian email marketing service offering transactional emails, automated campaigns, and subscriber management. Its REST API enables integration with external CRMs, e-commerce platforms, and automation workflows.
With the Dashamail integration in AACFlow, you can:
- Send email: Deliver transactional emails to individual recipients
- Add contact: Register new subscribers to mailing lists
- Get lists: Retrieve all available subscriber lists
- Send campaign: Dispatch mass email campaigns to subscriber lists
This integration enables automated email marketing and transactional email delivery for Russian-market workflows.
Usage Instructions
Integrate Dashamail into the workflow. Requires an API key from your Dashamail account at app.dashamail.ru under Account → API.
Tools
dashamail_send_email
Send a transactional email
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Dashamail 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 |
|---|---|---|
messageId | string | Sent message ID |
success | boolean | Whether the email was sent |
dashamail_add_contact
Add a subscriber to a list
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Dashamail API key |
email | string | Yes | Subscriber email address |
listId | string | Yes | Mailing list ID |
firstName | string | No | Subscriber first name |
lastName | string | No | Subscriber last name |
Output
| Parameter | Type | Description |
|---|---|---|
contactId | string | Created contact ID |
success | boolean | Whether the contact was added |
dashamail_get_lists
Get all subscriber lists
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Dashamail API key |
Output
| Parameter | Type | Description |
|---|---|---|
lists | array | Array of mailing list objects |
Links
- Official API: https://dashamail.ru/api-documentation/
- AACFlow block source: apps/aacflow/blocks/blocks/dashamail.ts

