Download OpenAPI specification:Download
Contains functionality around sending email.
For endpoints that support localization the language can be passed either as a query string parameter (using the name 'language') or in the 'accept-language' header.
If no language is passed to such endpoints then the default configured language will be used.
Receives a desired email request and forwards the request to the configured Email Service Provider.
Accept-Language | string The ISO 639-1 language to use for localizable data. |
The request DTO
from | object (EmailAddress) |
to | Array of objects (EmailAddress) Nullable |
cc | Array of objects (EmailAddress) Nullable |
bcc | Array of objects (EmailAddress) Nullable |
replyTo | object (EmailAddress) |
subject | string Nullable |
content | Array of objects (BodyContent) Nullable |
attachments | Array of objects (EmailAttachment) Nullable |
priorityTypeKey | string (PriorityTypeKey) Enum: "Normal" "Low" "High" |
headers | Array of objects (HeaderItem) Nullable |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "from": {
- "address": "cosmin.ivan@additiv.com"
}, - "to": [
- {
- "address": "cosmin.ivan@additiv.com"
}
], - "subject": "testing email",
- "content": [
- {
- "type": "text/plain",
- "value": "Hello!"
}
]
}
{- "messageId": "string",
- "errorMessages": [
- "string"
], - "successful": true
}