【问题标题】:HTML email - image in email only display at certain devicesHTML 电子邮件 - 电子邮件中的图像仅在某些设备上显示
【发布时间】:2025-12-28 10:55:16
【问题描述】:

在我的 EDM 中,我有一些图片,它们在我的桌面和移动设备上看起来都很好。但是当我尝试发送到其他手机设备时,有些图像没有显示(未找到)。所有图像都已托管在我的服务器上。我已经参考并关注了这个template,但仍然没有显示图像。

<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>

【问题讨论】:

  • 无论您将文件托管在何处,是否可供公众访问?其次,请发布您的代码,以便有人可以查看您的代码是否有问题。
  • @Syfer 是的,所有图片都可供公众访问。有1500行代码,所以我没有展示出来
  • 更新问题
  • 您正在使用输入样式作为链接。只是你的图像并在它周围放置一个锚。输入在电子邮件世界中的支持非常有限。
  • @Syfer yaya 我听从了您的建议,将其更改为 img,现在可以使用了

标签: html outlook html-email electronic-direct-mail


【解决方案1】:
<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>

【讨论】: