messaging

Email

0.000001 USD

Parse

POST /v1/email/Parse

Parse an RFC5322 address e.g "Joe Blogs <[email protected]>"

Request

addressstring

The address to parse. Can be of the format "Joe Blogs <[email protected]>" or "[email protected]"

Response

addressstring

the email address

namestring

associated name e.g Joe Blogs

Request

Response

{
    "name": "Joe Blogs",
    "address": "[email protected]"
}

0.01 USD

Send

POST /v1/email/Send

Send an email by passing in from, to, subject, and a text or html body

Request

fromstring

the display name of the sender

html_bodystring

the html body

reply_tostring

an optional reply to email address

subjectstring

the email subject

text_bodystring

the text body

tostring

the email address of the recipient

Response

{}

Request

Response

{}

0.000001 USD

Validate

POST /v1/email/Validate

Validate an email address format

Request

addressstring

Response

is_validboolean

Request

Response

{
    "is_valid": true
}