I'm writing a j2ee application, that generates an html and sends it as email. In my html, a have an image, but it is not displayed when email is received. The html code is something like:
<img src="myimage.gif"></img>
where "myimage.gif" is sent as attached file in the email. I tried to change it to
<img src="cid:myimage.gif"></img>
but still no result. Any ideas? It should be without a link to the image.