smartlead_create_manual_placement_test
Create a manual placement test to evaluate email deliverability across different providers using Smartlead mailboxes, checking spam filters and link domains.
Instructions
Create a manual placement test using Smartlead mailboxes to test email deliverability across various email providers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all_email_sent_without_time_gap | Yes | Set true to send all emails simultaneously | |
campaign_id | Yes | Campaign ID for which you want to select the sequence to test | |
description | No | Description for your test to reference later | |
is_warmup | Yes | Set true to receive positive intent responses and move emails from spam to inbox | |
link_checker | Yes | Enable to check if domains for links in email body are blacklisted | |
min_time_btwn_emails | Yes | Time gap between each email from each mailbox (if time gap enabled) | |
min_time_unit | Yes | Time unit for the time gap (minutes, hours, days) | |
provider_ids | Yes | Array of provider IDs to send test emails to | |
sender_accounts | Yes | Array of email addresses to use as senders | |
sequence_mapping_id | Yes | The ID of the sequence or variant you would like to test | |
spam_filters | Yes | Array of spam filters to test across, e.g. ["spam_assassin"] | |
test_name | Yes | Name of your test |
Input Schema (JSON Schema)
{
"properties": {
"all_email_sent_without_time_gap": {
"description": "Set true to send all emails simultaneously",
"type": "boolean"
},
"campaign_id": {
"description": "Campaign ID for which you want to select the sequence to test",
"type": "integer"
},
"description": {
"description": "Description for your test to reference later",
"type": "string"
},
"is_warmup": {
"description": "Set true to receive positive intent responses and move emails from spam to inbox",
"type": "boolean"
},
"link_checker": {
"description": "Enable to check if domains for links in email body are blacklisted",
"type": "boolean"
},
"min_time_btwn_emails": {
"description": "Time gap between each email from each mailbox (if time gap enabled)",
"type": "integer"
},
"min_time_unit": {
"description": "Time unit for the time gap (minutes, hours, days)",
"type": "string"
},
"provider_ids": {
"description": "Array of provider IDs to send test emails to",
"items": {
"type": "integer"
},
"type": "array"
},
"sender_accounts": {
"description": "Array of email addresses to use as senders",
"items": {
"type": "string"
},
"type": "array"
},
"sequence_mapping_id": {
"description": "The ID of the sequence or variant you would like to test",
"type": "integer"
},
"spam_filters": {
"description": "Array of spam filters to test across, e.g. [\"spam_assassin\"]",
"items": {
"type": "string"
},
"type": "array"
},
"test_name": {
"description": "Name of your test",
"type": "string"
}
},
"required": [
"test_name",
"spam_filters",
"link_checker",
"campaign_id",
"sequence_mapping_id",
"provider_ids",
"sender_accounts",
"all_email_sent_without_time_gap",
"min_time_btwn_emails",
"min_time_unit",
"is_warmup"
],
"type": "object"
}