vote up 1 vote down star
1

If I were to build a newsletter emailing system, I will need to be able to generate reports on how many emails bounced, flagged as spam, unsubscribed, read vs. unread, click through rates etc....

So how do you keep track of user activity after the email has been sent? Am I right in assuming that you CAN NOT embed javascript code into emails to monitor user activity? How else do I gather data for my reports?

flag

2 Answers

vote up 2 vote down check

You can easily track click-through rates by including a tracking query string bit in the URLs and route them through your site.

So a link might be: http://mysite.com/?LinkID=foobar

As for read vs. unread you can get an idea for that by including a small transparent image from your site that includes a tracking URL http://mysite.com/track.gif?EmailID=email. However this is not foolproof since emails can be read offline and most modern email clients do not display images without a user action to display images in the email.

For bounced, you'll have to track those by reading from a mailbox for the From email.

Can't think of way to track emails flagged as spam except to send it to several mailboxes that use some of the common spam filtering products and check the results. However, this isn't likely to be accurate because most can and are customized/trained by individual users.

link|flag
vote up 3 vote down

Once you send the e-mail, it's free like a baby bird kicked out of the nest. The writers of e-mail clients go to great lengths to make sure that they block any feature that will give you that kind of feedback you're asking for. While there are legitimate uses for this sort of information, spammers use such information to verify and clean their e-mail lists.

Many ISPs also block bounces because they give spammers information.

The best you can do is try to give your readers an incentive to click through back to your site. Then, you can gather information not available to a sender of e-mail.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.