I aplogize. I didn't know I had to do that.
Main Topics
Browse All TopicsHello everyone,
I'm looking desperatly for any kind of tutorial on how to implement the pixel tracking for e-mails. I'm not using this for spamming purposes, and it's used for reporting needs only. So it will not violate anyone's privacy etc. Every person on the list is aware of the fact that we will be collecting such information.
So if anyone can please help me with some code or something on how this happens. I'm using a regular host right now, with MySQL database and Java.
I thank you very much for you time,
Lior
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
So I know that this topic is fairly old, however I am trying to implement solution #2 above. The .asp page is working correctly, and I have been able to successfully link to images from the same location that the asp is, however it seems as if the asp is not getting served.
I am using Outlook as my mail client. I have tested this by sending an HTML message, and going to Insert/Picture, and putting in the link (http://blah blah) for the picture source. If I just put the link into the body of the message and the user clicks it, then the asp is served. For some reason when I try to insert the picture, the imbedded <img> is not calling (or something) the asp. I also have verified that the syntax of the <img src=> is correct simply by "view source".
Any advice is greatly appreciated as I need some answers by 2 pm today. How's that for short notice? Thanks all.
HD
try testing the html by sending it through CDO rather than in outlook or whatever mail app you are using, also try pasting the html into a document and check to see if the tracking page is called.
Can you post some example html from the email as well, sometimes we all miss something and it just needs a second pair of eyes to pick it out!
a..//
ps. it's already 2:30pm where in my part of the world! ;-)
Business Accounts
Answer for Membership
by: allanaPosted on 2003-06-04 at 10:02:08ID: 8650347
Ok... here goes...
e.com/trac king.gif?m e@me.com"> then all you do is use a logging analysis app like Webtrends to filter out this image data and do some processing on the querystring and you have some loggin info on the mail you sent out.
e.com/trac king.asp?m e@me.com">
Method 1
Actually embed a 1x1 pixel and customise the html email when it is sent out to include the email address of the recipient in the querystring. ie <IMG SRC="http://www.yourwebsit
You will need access to the web logs and you can probably get your host to add most of the fields you require.
Method 2
Emails are sent as HTML email but the 1x1 pixel image actually isn't an image, but the SRC tag would actually refer to a page which logs all the enviroment variables on the pc which calls it.
eg <IMG SRC="http://www.yourwebsit
Enviroment Variables are sent in the http header of every request and these can be accessed by the server that your tracking 'image' sits on. These Enviroment Variables can then be stored in your database and processed.
It's that simple!!