HTML 电子邮件中的图像

发布于 2024-12-18 13:46:22 字数 311 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傻比既视感 2024-12-25 13:46:22

在您的 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.

还在原地等你 2024-12-25 13:46:22

您需要编写 src="cid:ContentId" 来引用附加图像,其中 ContentId 是 MIME 部分的 ID。

You need to write src="cid:ContentId" to refer to an attached image, where ContentId is the ID of the MIME part.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文