Django: How to send HTML emails with embedded images

前端 未结 5 1765
心在旅途
心在旅途 2020-12-03 03:18

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?

Any example is very ap

5条回答
  •  时光说笑
    2020-12-03 03:37

    http://djangosnippets.org/snippets/285/

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

    Here is better example: https://djangosnippets.org/snippets/3001/

提交回复
热议问题