Django EmailMultiAlternatives与嵌入式图像的HTML

时间:2011-06-20 20:36:04

标签: python django email

我正在尝试使用HTML和embadded图像发送电子邮件。电子邮件发送工作正常,它还将图像附加到电子邮件中,但它没有以HTML格式显示图像(内联)。我在视图中使用了Content:ID,在模板中使用了cid但没有成功:(。我探索了很多表单并应用了解决方案,但是徒劳无助请帮助!。这是我的代码:

html_content = render_to_string('newsletters/newsletter_template.html', vars)
text_content = strip_tags(html_content) 

to = 'myemail@gmail.com'


msg = EmailMultiAlternatives(self.subject, text_content, settings.STAFF_FROM_EMAIL, [to])
msg.attach_alternative(html_content, "text/html")

image_file = open('../media/images/banner_admin.gif', 'rb')
msg_image = MIMEImage(image_file.read())
image_file.close()

msg_image.add_header('Content-ID', '<image1>')
msg.attach(msg_image)

msg.send()

模板文件:

<div style="border:2px solid #CCCCCC; width:900px; font-size:10px; padding:5px;">
    <div style="margin-bottom: 10px;"><img src="cid:image1" /></div>
    <div style="">{{body|linebreaks}}</div>
</div>

如果我在这里错过了什么,请告诉我......

2 个答案:

答案 0 :(得分:0)

要将PNG文件嵌入电子邮件正文中,请尝试以下代码:

for f in ['img1.png', 'img2.png']:
    fp = open(os.path.join(os.path.dirname(__file__), f), 'rb')
    msg_img = MIMEImage(fp.read())
    fp.close()
    msg_img.add_header('Content-ID', '<{}>'.format(f))
    msg.attach(msg_img)`enter code here`

msg.send()

现在,您可以在模板中使用<img src="cid:img1.png">。结果应该是电子邮件客户端在<img>标记的位置显示嵌入邮件中的图像,而不是附件。

答案 1 :(得分:-1)

HTML电子邮件中的图片需要具有绝对网址:

<img alt="Django" src="https://www.djangoproject.com/m/img/site/hdr_logo.gif">