I am using PHP mail function to send mails to my clients. But, I wish to know how many of the recipients have actually bothered to open my mail and how many have not.
Is there any way to detect that ? Any javascript function will surely be disabled by the clients email user interface.
Any help in this regard will be appreciated
The most common means of accomplishing this is to send HTML email, with references to some image hosted by your web server. In each email, as part of that image's URL, include a unique identifier. Then as people read your email, and download the images, that activity will be noted in your web server logs. All you have to do then is a bit of log analysis.