update_account
Modify email account settings including daily sending limits and warmup configuration for improved email deliverability and campaign management.
Instructions
Update a sending account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
daily_limit | No | New daily sending limit | |
Yes | Email address of the account to update | ||
warmup_enabled | No | Enable/disable warmup |
Input Schema (JSON Schema)
{
"properties": {
"daily_limit": {
"description": "New daily sending limit",
"type": "number"
},
"email": {
"description": "Email address of the account to update",
"type": "string"
},
"warmup_enabled": {
"description": "Enable/disable warmup",
"type": "boolean"
}
},
"required": [
"email"
],
"type": "object"
}