I have a server side application (on Tomcat) that does the following: If I type into the browser's address bar (as an example): http://example.com/manager/?em=123&msgid=456
then the server side app correctly parses the request, populates my MySQL, all working just fine. Or, even if I just go to the site: http://example.com/manager/ it correctly inserts a new row (with null values, which is fine)
Now, my problem is this: I composed an html email that contained the following line:
<img alt="" src="http://example.com/manager/?em=123&msgid=456" width="1" height="1" border="0" />
The email is then being sent, and received, and in the received "show original" I can actually see the above line, but the server side application is NOT being "triggered". (Also tried replacing "&" with & still the same.)
Also if I include a link in the email, and the email recipient clicks on it, everything works as expected.
Not sure if I need something in header or anything similar, just guessing.
Any idea will be appreciated.
Thank you