Transactional emails
Get the personalized content of a sent transactional email
get/smtp/emails/{uuid}
Path parameters
uuidstring required
Unique id of the transactional email that has been sent to a particular contact
Response
Transactional email content
Example response
{
"email": "abc@example.com",
"subject": "Summer Camp",
"templateId": 2,
"date": "2017-03-12T12:30:00Z",
"events": [
{
"name": "delivered",
"time": "2017-03-12T12:30:00Z"
}
],
"body": "<!DOCTYPE html> <html> <body> <h1>Greetings from the team</h1> <p>This is the actual html content sent</p> </body> </html>",
"attachmentCount": 2
}