reply_to_email
Respond to existing emails using the Instantly MCP Server by providing the email ID, account, subject, and body content for direct replies.
Instructions
Reply to an existing email. IMPORTANT: This can only be used to reply to existing emails, not to send new emails. You must provide the ID of an existing email to reply to. Use campaigns for sending new emails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc_address_email_list | No | Comma-separated list of BCC email addresses (optional) | |
body | Yes | Email body content (REQUIRED). Provide either html or text, or both. | |
cc_address_email_list | No | Comma-separated list of CC email addresses (optional) | |
eaccount | Yes | The email account to send from (REQUIRED). Must be an email address from list_accounts that exists in your workspace. | |
reply_to_uuid | Yes | The ID of the email to reply to (REQUIRED). Get this from list_emails or get_email endpoints. | |
subject | Yes | Reply subject line (REQUIRED). Usually starts with "Re: " |
Input Schema (JSON Schema)
{
"properties": {
"bcc_address_email_list": {
"description": "Comma-separated list of BCC email addresses (optional)",
"type": "string"
},
"body": {
"description": "Email body content (REQUIRED). Provide either html or text, or both.",
"properties": {
"html": {
"description": "HTML body content",
"type": "string"
},
"text": {
"description": "Plain text body content",
"type": "string"
}
},
"type": "object"
},
"cc_address_email_list": {
"description": "Comma-separated list of CC email addresses (optional)",
"type": "string"
},
"eaccount": {
"description": "The email account to send from (REQUIRED). Must be an email address from list_accounts that exists in your workspace.",
"type": "string"
},
"reply_to_uuid": {
"description": "The ID of the email to reply to (REQUIRED). Get this from list_emails or get_email endpoints.",
"type": "string"
},
"subject": {
"description": "Reply subject line (REQUIRED). Usually starts with \"Re: \"",
"type": "string"
}
},
"required": [
"reply_to_uuid",
"eaccount",
"subject",
"body"
],
"type": "object"
}