brevo · Schema
TransactionalEmailContent
Properties
| Name | Type | Description |
|---|---|---|
| string | Recipient email address. | |
| subject | string | Rendered subject line of the sent email. |
| body | string | Rendered HTML body of the sent email. |
| date | string | UTC date-time when the email was sent. |
| messageId | string | Unique message identifier. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransactionalEmailContent",
"title": "TransactionalEmailContent",
"type": "object",
"properties": {
"email": {
"type": "string",
"format": "email",
"description": "Recipient email address."
},
"subject": {
"type": "string",
"description": "Rendered subject line of the sent email."
},
"body": {
"type": "string",
"description": "Rendered HTML body of the sent email."
},
"date": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the email was sent."
},
"messageId": {
"type": "string",
"description": "Unique message identifier."
}
}
}