v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
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

emailstring email required

Email address to which transactional email has been sent

subjectstring required

Subject of the sent email

templateIdinteger

Id of the template

datestring required

Date on which transactional email was sent

bodystring required

Actual content of the transactional email that has been sent

attachmentCountinteger required

Count of the attachments that were sent in the email

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
}