Properties
| Name | Type | Description |
|---|---|---|
| subject | string | The subject of the message |
| preview_text | string | Preview text associated with the message |
| from_email | string | The email the message should be sent from |
| from_label | string | The label associated with the from_email |
| reply_to_email | string | Optional Reply-To email address |
| cc_email | string | Optional CC email address |
| bcc_email | string | Optional BCC email address |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EmailContentSubObject",
"title": "EmailContentSubObject",
"type": "object",
"properties": {
"subject": {
"description": "The subject of the message",
"type": "string",
"example": "Buy our product!",
"nullable": true
},
"preview_text": {
"description": "Preview text associated with the message",
"type": "string",
"example": "My preview text",
"nullable": true
},
"from_email": {
"description": "The email the message should be sent from",
"type": "string",
"example": "[email protected]",
"nullable": true
},
"from_label": {
"description": "The label associated with the from_email",
"type": "string",
"example": "My Company",
"nullable": true
},
"reply_to_email": {
"description": "Optional Reply-To email address",
"type": "string",
"example": "[email protected]",
"nullable": true
},
"cc_email": {
"description": "Optional CC email address",
"type": "string",
"example": "[email protected]",
"nullable": true
},
"bcc_email": {
"description": "Optional BCC email address",
"type": "string",
"example": "[email protected]",
"nullable": true
}
}
}