0
I am creating an HTML signature for the emails, but I noticed a problem that occurs only on Android, and prevents the images to be loaded properly.
It replaces the image address by a link, as below (after examining the source code of the email received):
<img src="meusite.com.br/img.png" alt="Imagem" width="800" height="109" border="0">
<img src="<a href='meusite.com.br/img.png' target='_blank'>meusite.com.br/img.png
</a>" alt="Imagem" width="800" height="109" border="0">
Which means he converts the address:
meusite.com.br/img.png
in
<a href='meusite.com.br/img.png' target='_blank'>meusite.com.br/img.png
</a>
Is there any way out of this?
The <img> tag is without closing /> anyway?
– Piovezan
Why do you have a tag
<a>
within thesrc
of the image?– Rafael Tavares
I’m not the one who added this <a> in src, it’s when I enter this signature code in the email in any android app
– Julio Brim