HTML 电子邮件中的图像
在 HTML 消息上添加图像
我正在使用一个 Python 函数来发送包含附件和 HTML 消息的邮件......我想使用
当我尝试时,消息尊重标签,但不显示我想要的图像(它显示未找到的图像“X”)......
有谁知道这是否是 MIME 问题。 ...因为我正在使用 MIMEMultipart('Mixed').....
或者是图像路径的问题(我对附件文件使用相同的路径,并且没有问题)....
我不知道还会是什么!
多谢!!
I am working with a Python function that sends mails wich include an attachment and a HTML message......I want to add an image on the HTML message using
<img src="XXXX">
When I try it, the message respects the tag, but does not display the image I want (it displays the not found image "X").....
does anyone know if this is a problem with the MIME thing....because i am using the MIMEMultipart('Mixed').....
or it is a problem with the path of the image (I'm using the same path for the atachment file and there is no problem with it)....
I dont know what else could it be!!
thanks a lot!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 html 中,您需要图像的完全限定路径:
http://yourdomain.com/images/image.jpg
您应该能够获取图像标记中的 URL,将其粘贴到浏览器的地址栏并在那里查看。如果你看不到它,那你就走错路了。
In your html you need the fully qualified path to the image:
http://yourdomain.com/images/image.jpg
You should be able to take the URL in the image tag, paste it into the browser's address bar and view it there. If you can't see it, you've got the wrong path.
您需要编写
src="cid:ContentId"
来引用附加图像,其中ContentId
是 MIME 部分的 ID。You need to write
src="cid:ContentId"
to refer to an attached image, whereContentId
is the ID of the MIME part.