Email Tracking

Users tend to engage with emails even when they aren’t engaged with your app. Thus, it’s important to track how they interact with your emails.

Tracking clicks in emails works via redirects. You can use our client libraries to generate a redirect link.

You can only create redirect links from your server-side application using one of Stream’s API clients. Refer to our API documentation for more information on how to obtain the clients.

Example

// the url to redirect to
const target_url = 'http://mysite.com/detail';

// track the impressions and a click
const impression = {
  content_list: ['tweet:1', 'tweet:2', 'tweet:3'], 
  user_data: 'tommaso', 
  location: 'email',
  feed_id: 'user:global'
};

const engagement = {
  content: 'tweet:2', 
  label: 'click',
  position: 1, 
  user_data: 'tommaso', 
  location: 'email',
  feed_id: 'user:global'
};

const events = [impression, engagement];
const tracking_url = client.client.createRedirectUrl(target_url, "tommaso", events);

// when the user opens the tracking url in their browser gets redirected to the target url the events are added to our analytics platform

In the code above, when a user clicks the tracking URL, they are re-directed to the specified target URL. During the re-direct, Stream tracks the impressions and engagement events you specified.

© Getstream.io, Inc. All Rights Reserved.