HubSpot · Schema
EmailMessage
The email message configuration
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales
Properties
| Name | Type | Description |
|---|---|---|
| to | string | The recipient's email address |
| from | string | Override the from address (must be verified) |
| sendId | string | A unique ID to prevent duplicate sends |
| replyTo | array | Reply-to email addresses |
| cc | array | CC email addresses |
| bcc | array | BCC email addresses |
JSON Schema
{
"type": "object",
"description": "The email message configuration",
"properties": {
"to": {
"type": "string",
"description": "The recipient's email address",
"format": "email",
"example": "[email protected]"
},
"from": {
"type": "string",
"description": "Override the from address (must be verified)",
"format": "email",
"example": "[email protected]"
},
"sendId": {
"type": "string",
"description": "A unique ID to prevent duplicate sends",
"example": "unique-send-id-123"
},
"replyTo": {
"type": "array",
"description": "Reply-to email addresses",
"example": [
"[email protected]"
],
"items": {
"type": "string",
"format": "email"
}
},
"cc": {
"type": "array",
"description": "CC email addresses",
"example": [
"[email protected]"
],
"items": {
"type": "string",
"format": "email"
}
},
"bcc": {
"type": "array",
"description": "BCC email addresses",
"example": [
"[email protected]"
],
"items": {
"type": "string",
"format": "email"
}
}
},
"required": [
"to"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EmailMessage"
}