messaging
0.000001 USD
Parse an RFC5322 address e.g "Joe Blogs <[email protected]>"
addressstring
The address to parse. Can be of the format "Joe Blogs <[email protected]>" or "[email protected]"
addressstring
the email address
namestring
associated name e.g Joe Blogs
Request
Response
{
"name": "Joe Blogs",
"address": "[email protected]"
}
0.01 USD
Send an email by passing in from, to, subject, and a text or html body
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
Request
Response
{}
0.000001 USD
Validate an email address format
addressstring
is_validboolean
Request
Response
{
"is_valid": true
}