Call us toll free @ 888-497-7898

email - getopenlogsmtp

Gets the SMTP open log from a single email send API/quick send or the SMTP API


API Call Information
area: email
action: getopenlogsmtp

API Arguments
Argument Data Type Required Description
id integer Yes The id of email via send single api/quick send or SMTP API
start integer No Starting position
limit integer No Number of records to return
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getopenlogsmtp&id=111

API Result:
XML Response JSON Response
<response>
  <records>1</records>
  <log>
    <datecreated>June 15, 2025,  9:51 pm</datecreated>
    <ip>104.28.104.18</ip>
    <country>US</country>
    <useragent><![CDATA[Unknown Mozilla Compatible]]></useragent>
    <useragentfull><![CDATA[Mozilla/5.0]]></useragentfull>
  </log>
</response>
{
    "records": "1",
    "log": {
        "datecreated": "June 15, 2025,  9:51 pm",
        "ip": "104.28.104.18",
        "country": "US",
        "useragent": "Unknown Mozilla Compatible",
        "useragentfull": "Mozilla/5.0"
    }
}