Send JSON data
SMTPeter can generate and send messages based on JSON input. The properties in the JSON (like the subject and message body) are converted into a valid email message and sent to the recipient. This feature is especially useful if you do not want to bother about setting up a MIME string yourself.
POST /v1/send?access_token={YOUR_API_TOKEN} HTTP/1.0
Host: www.smtpeter.com
Content-Type: application/json
Content-Length: 7391
{
"recipient": "john@doe.com",
"subject": "This is a test mail",
"from": "info@example.com",
"text": "This is the messge body...",
"html": "<html><head>..."
}
The following table lists all supported properties:
Property | Description |
---|---|
from | "From:" header |
to | "To:" header |
cc | "Cc:" header |
replyto | "Reply-To:" header |
subject | Subject of the mail |
text | Text version of the mail |
html | HTML version of the mail |
unsubscribe | The "list-unsubscribe" header |
extra | Extra x-\* headers |
attachments | Attachments to be added to the mail |
Address format
The "from", "to", "replyto" and "cc" fields can be used to add email addresses to the message header. The "from" variable must be a single email address, while there is no limit to the number of addresses that you use for the "to", "replyto" and the "cc" fields.
The notation for the email addresses in the "from", "to", "replyto" and "cc" fields is very flexible: SMTPeter also recognizes display names and comma separated lists of addresses.
{
"from": "info@example.com",
"to": [
"one@example.com",
"two@example.com",
"\"Number three\" <three@example.com>, info@example.com"
],
"cc": "John Doe <johndoe@example.org>"
}
Important: the addresses in "from", "to", "replyto" and "cc" are not used for the e-mail delivery. You need a special "recipient" property for this. The "from", "to", "replyto" and "cc" are only used to create the content of the e-mail message, and it is thus in fact possible to create an e-mail with a different to-address than the address to which the mail is sent. For more information about this, check out the article on setting up the recipients.
Subject, text and HTML
The "subject", "text" and "html" properties can be used to set the subject line of the email, and the text and HTML version. The properties are self-explanatory.
{
"subject": "this is the subject line",
"html": "<html> .... </html>",
"text": "text version of the email"
}
Unsubscribe header
If you want to add a "list-unsubscribe" header to your email, you can add the JSON "unsubscribe" option. You can set it to a string holding either a URL or an email address, or an array holding both:
{
"subject": "this is the subject line",
"html": "<html> .... </html>",
"text": "text version of the email",
"unsubscribe": "unsubscribe@example.com"
}
You can also set it to a URL:
{
"subject": "this is the subject line",
"html": "<html> .... </html>",
"text": "text version of the email",
"unsubscribe": "http://www.example.com"
}
Or to both an email address and a URL:
{
"subject": "this is the subject line",
"html": "<html> .... </html>",
"text": "text version of the email",
"unsubscribe": [ "http://www.example.com", "unsubscribe@example.com" ]
}
It is your own responsibility to process the unsubscribes.
Extra "x-*" headers
The "extra" property can be used in case you want to add custom headers to your email. To ensure that your custom headers do not conflict with other headers, you may only add headers with a "x-*" prefix.
{
"subject": "this is the subject line",
"html": "<html> .... </html>",
"text": "text version of the email",
"extra": {
"x-my-identifier": "abcdefg",
"x-custom-property": "custom"
}
}
Attachments
With the "attachments" property you can attach files to your mailing. SMTPeter expects an array with JSON objects. There are two types of objects that are supported. For one you provide a link to the attachment that you want to send and for the other you provide the data in the JSON object itself. If you provide the data in the JSON, this data has to be base64 encoded. Moreover, you can optionally specify the type of data that you send.
{
"attachments": [
{
"url": "https://www.example.com/attachment1.pdf",
"name": "attachment1.pdf",
"type": "application/pdf"
},
{
"data": "VGhpcyBpcyBqdXN0IGFuIGV4YW1wbGUgdGV4dCBmaWxlLi4=",
"name": "test.txt",
"type": "text/plain"
}
]
}
If all information is provided in a correct format you will get a reaction from the API.