Gmail在html电子邮件中用span替换img
我正在尝试为客户提供 HTML 电子邮件模板,以便他们可以编辑文本。但是当我在 Gmail 中向他们发送模板时。例如,图像将仅显示为“logo.jpg”。
我查看源代码,它用 logo.jpg
替换了 标签
这是我写的 HTML:
<img width='200' src='http://www.example.co.uk/images/logo.JPG'></img>
有什么问题吗?所有电子邮件客户端都是如此吗?
I'm trying to give a client a HTML email template so that they can just edit text. However when i send them the template in Gmail. The images will just show as "logo.jpg" for example.
I view the source and it's replaced the <img>
tag with <span>logo.jpg</span>
This is the HTML i wrote:
<img width='200' src='http://www.example.co.uk/images/logo.JPG'></img>
Anything wrong with this? Is this across all email clients?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。图像没有结束标签。
Yes. Images don't have closing tags.