1

In my EDM, I have a few images inside, Its all look good in my desktop and mobile. But when I try to send to other phone devices, some images are not displayed (not found). All the images already hosted to my server. I have referred and follow this template and still the image not displayed.

enter image description here

<p class="desc_email" style="cursor: pointer; text-align: center;" >
 <a href="https://www.youtube.com/"><input type="image" src="https://asd/asd/asd/asd/button.png" style="cursor: pointer;" class="btn" /></a></p>
  • Wherever you have hosted the files, is it accessible for public? Secondly please post your code so someone can see if your code has issues. – Syfer Sep 18 '19 at 02:21
  • @Syfer ya, all the images are accessible for public. there are 1500lines of code, so I didn't show it out –  Sep 18 '19 at 02:32
  • updated question –  Sep 18 '19 at 02:35
  • 1
    You are using an input to style as a link. Just you the image and place an anchor around it. Inputs have very limited support in email world. – Syfer Sep 18 '19 at 03:07
  • @Syfer yaya I followed your advise, changed it to `img` and it works now –  Sep 18 '19 at 14:18
  • @Syfer btw can you help me with this as well? https://stackoverflow.com/questions/57994811/html-email-the-href-attribute-did-not-hidden-in-some-devices –  Sep 18 '19 at 14:19

1 Answers1

0
<p class="desc_email" style="cursor: pointer; text-align: center;">
<a href="https://www.youtube.com/"><img src="https://asd/asd/asd/asd/button.png" alt="" 
  style="cursor: pointer;" class="btn"></a>
</p>
  • can you help me with this? https://stackoverflow.com/questions/57994811/html-email-the-href-attribute-did-not-hidden-in-some-devices –  Sep 18 '19 at 14:19