Django:如何发送带有嵌入图像的 HTML 电子邮件

问题描述:

如何发送带有嵌入图像的 HTML 电子邮件?HTML 应该如何链接到图像?图片应该添加为 MultiPart 电子邮件附件吗?

How can I send HTML emails with embedded images? How the HTML should link to the images? The images should be added as MultiPart email attach?

非常感谢任何示例.

http://djangosnippets.org/片段/285/

您必须使用 MultiPart 和 cid:.发送带有图像的 html 邮件几乎总是一个坏主意.它为您的邮件和 smtp 服务器提供垃圾邮件点...

You have to use MultiPart and cid:. It is almost always a bad idea to send html mails with images. It gives spam points to your mail and smtp server ...

这里是更好的例子:https://djangosnippets.org/snippets/3001/