How to check is mail opened in sendy

Sendy is a popular email marketing automation tool that allows you to track the performance of your email campaigns. To check if an email has been opened in Sendy, you can follow these steps:

Method 1: Using Sendy's Email Analytics

  1. Log in to your Sendy account and navigate to the "Emails" tab.
  2. Click on the "Analytics" button next to the email campaign you want to check.
  3. In the "Analytics" page, you'll see a graph showing the open rates for your email campaign.
  4. Click on the "Open" tab to view the detailed open rates for each email.
  5. You can filter the results by date range, device, and browser to get more specific information.

Method 2: Using Sendy's Email Tracking

  1. Log in to your Sendy account and navigate to the "Emails" tab.
  2. Click on the "Track" button next to the email campaign you want to check.
  3. In the "Track" page, you'll see a list of all the emails sent in the campaign, along with their tracking information.
  4. Look for the "Open" column, which will show you whether each email has been opened or not.

Method 3: Using Sendy's API

  1. Sendy provides an API that allows you to retrieve tracking information for your email campaigns. You can use this API to check if an email has been opened.
  2. To use the API, you'll need to make a GET request to the Sendy API endpoint, passing in the email campaign ID and the email address you want to check.
  3. The API will return a JSON response containing the tracking information for the email, including whether it has been opened or not.

Here's an example of how you might use the Sendy API to check if an email has been opened:

curl -X GET \
  https://api.sendy.io/v1/campaigns/123456/[email protected] \
  -H 'Authorization: Bearer YOUR_API_KEY'

Replace 123456 with the ID of your email campaign, [email protected] with the email address you want to check, and YOUR_API_KEY with your Sendy API key.