send_new_email
Send new emails to recipients through the Multilead platform for lead management and email campaigns, allowing you to compose messages with custom content and signatures.
Instructions
Send a new email to a recipient
This sends a new email through the platform to a recipient who may not have an existing thread.
Args: user_id: User ID account_id: Account ID recipient: Email address of the recipient subject: Email subject line content: Email body content (can include HTML) signature_id: ID of the signature to use
Returns: Sent email details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| recipient | Yes | ||
| subject | Yes | ||
| content | Yes | ||
| signature_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"content": {
"type": "string"
},
"recipient": {
"type": "string"
},
"signature_id": {
"type": "integer"
},
"subject": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"recipient",
"subject",
"content",
"signature_id"
],
"type": "object"
}