I was recommended Google Analytics as a solution for receiving confirmation whether the emails sent out by my web app actually was delivered and read by the recipient or not.
I take it that what google does is to use an embedded image in the email which causes the email client to issue a request to obtain the same when the email is opened for reading.
What are the advantages of using Google Analytics for doing this rather than my own solution. (Its pretty easy to write an image handler and keep a request count for each user using ASP.Net MVC.)
If images in incoming emails are blocked by default in the user's email client (which most email clients such as outlook do these days), will google analytics work?
Would I not have to worry about the previous item (2) if I use Google Analytics, as the image url will point to a Google domain which is more likely to be recognized as a trusted domain (rather than a self developed solution with my domain name).
I read somewhere that it was against google's privacy policy when using Google Analytics to insert data in the image url which would individually identify the user. If so how do I identify the user?
Thanks in advance.