The v1 API is a RESTful HTTP JSON API.
Streams new messages using EventSource and chunked encoding
Lists all messages excluding message content
Deletes all messages
Returns a 200
response code if message deletion was successful.
Returns an individual message including message content
Delete an individual message
Returns a 200
response code if message deletion was successful.
Download the complete message
Download a MIME part
Release the message to an SMTP server
Send a JSON body specifying the recipient, SMTP hostname and port number:
{
"Host": "mail.example.com",
"Post": "25",
"Email": "[email protected]"
}
Returns a 200
response code if message delivery was successful.