Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mass email tracking

Tags:

email

tracking

Most services offered online today that claim to "track" e-mails, do so by embedding images in the emails. My questions are:

  1. Is this the only way to do it and if not, what are the other methods?
  2. Are any of the methods actually fool-proof?
  3. Has anybody had any luck with specific software or even an online group?
like image 679
coderama Avatar asked Aug 02 '09 19:08

coderama


People also ask

Does Google have a mass email service?

GMass for Gmail - Google Workspace Marketplace. A powerful mail merge and mass email system for Gmail. A powerful mass email and mail merge system for Gmail. Simple and powerful email marketing inside Gmail.


2 Answers

  1. Yes, this is pretty much the only way to do it. Consider that an email is something that is inherently static. The only way to know if someone has "opened" an email is for the email to send some information back to your server. Most email clients these days support HTML emails, which means that you can get the client to request an image (or anything else) from your server by embedding the proper HTML tags. Other than this, you cannot force an email client to do anything it doesn't want to do. It's a separate program on a remote computer, and you have no control over it.

  2. No, there's no foolproof way. There will always be emails you can't track. If someone downloads their email and disconnects from the internet before reading it, you can't track that email. Most email clients allow you to disable image loading now as well if you want to, so that can block tracking too.

  3. I've usually written my own, so I wouldn't know what to recommend. I imagine most services will be quite similar, so I'd base a product/purchase decision on how easy their front-end is to use.

like image 153
zombat Avatar answered Nov 12 '22 13:11

zombat


In addition to pixel tracking, a second way to track open rates is by looking for clickthroughs. If someone clicked through, then they must have opened it. This is infrequent, but it's important not to throw this data away.

More details:

  • How MailChimp tracks open rates
  • How CampaignMonitor tracks open rates
  • Wikipedia on email open rates
  • Hubspot on open rate issues
like image 27
Anirvan Avatar answered Nov 12 '22 13:11

Anirvan