send_email_reply
Send email replies to existing conversation threads for lead management and campaign communication within the Multilead platform.
Instructions
Send an email reply to an existing thread
This sends a reply to an existing email conversation thread.
Args: user_id: User ID account_id: Account ID thread: Thread ID to reply to message: Email message content lead_id: Lead ID associated with this conversation campaign_id: Campaign ID associated with this conversation recipient: Email address of the recipient
Returns: Sent email reply details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| thread | Yes | ||
| message | Yes | ||
| lead_id | Yes | ||
| campaign_id | Yes | ||
| recipient | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"campaign_id": {
"type": "integer"
},
"lead_id": {
"type": "integer"
},
"message": {
"type": "string"
},
"recipient": {
"type": "string"
},
"thread": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"thread",
"message",
"lead_id",
"campaign_id",
"recipient"
],
"type": "object"
}