HTML Signature Changing Image Address by Link

Asked

Viewed 32 times

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?

  • Why do you have a tag <a> within the src of the image?

  • 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

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.