Send email
Send a email with our API
POST
/api/send
Send an email with the API
Headers
Name | Value |
---|---|
Content-Type |
|
API-KEY |
|
Version |
|
Body
email must be your email in a MIME format
domainUsed must be an array of all domains used in the email for the the 3 email addresses: - From email - Bounce email - Reply-to email
isTransactional must be either true or false
For example:
Same domain but different email addresses:
- From: marketing@your-domain.com
- Reply-to: no-reply@your-domain.com
- Bounce: bounce@your-domain.com
The value should be ["your-domain.com"]
Different domain and different email addresses:
- From: marketing@your-domain.com
- Reply-to: no-reply@your-domain.com
- Bounce: bounce@your-other-domain.com
The value should be ["example.com", "your-other-domain.com"]
Response
Last updated