Overview

You can use this request to retrieve a transactional email with a specific ID.

Note: This is a restful API.

The Method

APIMethod
GET https://live20.everlytic.net/api/2.0/trans_mails/

Parameters

PropertyTypeDefaultRequired
Transaction_idintegernoneYes

Example Request

 "/api/2.0/trans_mails/5f14717e402fb0568a4a016b",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_POSTFIELDS => "",
  CURLOPT_HTTPHEADER => array(
    "Authorization: Basic ",
    "cache-control: no-cache"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err)  else 

Example Response (Sent Email)


Example Response (Bounced Email)