smartlead_auto_generate_mailboxes
Generate mailboxes automatically for specified domains using provided personal details to support email marketing campaigns and outreach activities.
Instructions
Auto-generate mailboxes based on the domain name and personal details provided.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domains | Yes | List of domains and associated mailbox details | |
vendor_id | Yes | ID of the vendor from whom you want to purchase the domains and mailboxes |
Input Schema (JSON Schema)
{
"properties": {
"domains": {
"description": "List of domains and associated mailbox details",
"items": {
"properties": {
"domain_name": {
"description": "The domain name for which you want to generate mailboxes (e.g., example.com)",
"type": "string"
},
"mailbox_details": {
"description": "Details for each mailbox you want to generate",
"items": {
"properties": {
"first_name": {
"description": "First name for the mailbox owner (should be more than 2 characters and without spaces)",
"type": "string"
},
"last_name": {
"description": "Last name for the mailbox owner (should be more than 2 characters and without spaces)",
"type": "string"
},
"profile_pic": {
"description": "URL or identifier for profile picture (optional)",
"type": "string"
}
},
"required": [
"first_name",
"last_name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"domain_name",
"mailbox_details"
],
"type": "object"
},
"type": "array"
},
"vendor_id": {
"description": "ID of the vendor from whom you want to purchase the domains and mailboxes",
"type": "integer"
}
},
"required": [
"vendor_id",
"domains"
],
"type": "object"
}