Actions39
- Campaign Actions
- Campaign Statistic Actions
- Client Actions
- Email Account Actions
- Lead Actions
- Master Inbox Actions
- Webhook Actions
Overview
This node integrates with the Smartlead.ai API to manage email accounts and their warmup settings. Specifically, the "Update Warmup Settings" operation for the "Email Account" resource allows users to enable or disable the warmup feature and set the total number of warmups per day for a given email account.
This functionality is useful in scenarios where you want to gradually increase the sending volume of an email account to improve deliverability and avoid spam filters. For example, when onboarding a new email account, you can use this node to configure warmup parameters automatically as part of your email campaign setup workflow.
Properties
| Name | Meaning |
|---|---|
| Account ID | The unique identifier of the email account whose warmup settings you want to update. |
| Enable Warmup | Boolean flag to enable (true) or disable (false) the warmup process for the account. |
| Total Warmups Per Day | Number specifying how many warmup emails should be sent daily during the warmup period. |
Output
The output JSON contains the response from the Smartlead.ai API after updating the warmup settings of the specified email account. This typically includes confirmation details about the updated warmup configuration.
No binary data is produced by this operation.
Dependencies
- Requires an active API key credential for Smartlead.ai configured in n8n.
- The node makes HTTP requests to the Smartlead.ai API endpoint at
https://server.smartlead.ai/api/v1. - Proper network connectivity to the Smartlead.ai service is necessary.
Troubleshooting
- Invalid Account ID: If the provided Account ID does not exist or is incorrect, the API will return an error. Verify the Account ID before running the node.
- Authentication Errors: Ensure that the API key credential is valid and has sufficient permissions.
- API Rate Limits: Frequent updates might hit rate limits imposed by Smartlead.ai; consider adding delays or retries.
- Incorrect Property Types: Make sure "Enable Warmup" is boolean and "Total Warmups Per Day" is a positive integer.
- Network Issues: Check internet connectivity if requests fail due to timeouts or unreachable host errors.
Links and References
- Smartlead.ai API Documentation (general reference for API endpoints)
- n8n documentation on HTTP Request Authentication (for setting up API credentials)