Reputation: 9
I am currently working PHP, I want to track email status and update into my database such as who read the email or who opened?, who deleted?, who replied? and also When was the email opened/deleted/replied? Date and time.
I got the solution from online resources for open rate which i have been implemented. but I want to know is there any possibility to find who deleted the email? which I have been sent. please share the idea or give the solution
Thanks for your reply in advance.
Upvotes: 0
Views: 262
Reputation: 943142
The only information you can get is who responded with a received or opened receipt …
… and how many times a given image has been requested from your server. You can associate an image with a particular recipient in your database but:
There is no way to get a message in response to a deletion, reply, forward, etc.
In short: Emails are not spies.
Upvotes: 7