Actions24
- Account Actions
- Analytics Actions
- Campaign Actions
- Lead Actions
Overview
This node integrates with the Instantly API to manage email account warmup settings within a workspace. Specifically, the "Enable Warmup" operation under the "Account" resource allows users to enable the warmup process for either all email accounts or selected individual email accounts. Email warmup is a common practice to gradually increase the sending volume of new or cold email accounts to improve deliverability and avoid spam filters.
Practical examples:
- A marketing team wants to start warming up all their email accounts automatically before launching a large outreach campaign.
- An administrator needs to enable warmup on a specific email account that was recently added to the workspace.
- Bulk enabling warmup while excluding certain high-priority accounts from this process.
Properties
| Name | Meaning |
|---|---|
| Apply to All Emails | Boolean flag to enable warmup for all email accounts in the workspace. |
| Email Account | The specific email account to enable warmup on. Can be selected from a searchable list or specified by email address. Required if "Apply to All Emails" is false. |
| Excluded Emails | When applying warmup to all emails, this multi-select option allows excluding specific email accounts from the bulk operation. |
Output
The node outputs JSON data representing the result of the warmup enablement operation. Each output item corresponds to an input item processed and contains either the success response from the Instantly API or an error message if the operation failed.
If the operation succeeds, the JSON typically includes details about the affected email account(s) and confirmation of warmup being enabled.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Instantly API.
- The node depends on the Instantly API endpoints related to accounts management.
- Proper configuration of the API credential in n8n is necessary for successful requests.
- The node uses internal helper functions to fetch email accounts dynamically for dropdowns.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Specifying an email account that does not exist or is not accessible will result in errors.
- Network connectivity problems can prevent communication with the Instantly API.
- Using "Apply to All Emails" without properly excluding accounts might unintentionally affect unintended accounts.
Error messages:
- Errors returned from the Instantly API are surfaced as JSON objects with an
errorfield containing the message. - If the node fails to load email accounts for selection, it logs an error and returns an empty list.
- To resolve errors, verify API credentials, ensure the email accounts exist, and check network connectivity.
- Errors returned from the Instantly API are surfaced as JSON objects with an
Links and References
- Instantly API Documentation (general reference for API endpoints)
- n8n documentation on Creating Custom Nodes
- Best practices for Email Warmup