EmailAttachmentDto
Email attachment DTO
Properties
| Name | Type | Description |
|---|---|---|
| fileName* | string | File name |
File name | ||
| contentType* | string | MIME content type |
MIME content type | ||
| contentBase64 | string | Base64 encoded file content (Option 1) |
Base64 encoded file content (Option 1) | ||
| url | string | URL to download attachment from (Option 2) |
URL to download attachment from (Option 2) | ||
JSON Example
{
"fileName": "string",
"contentType": "string",
"contentBase64": "string",
"url": "string"
}