I am trying to send email using HTML and embadded image. Email sending works fine and also attaches the image via email, but does not show the image in HTML (inline). I used Content: ID in the view and cid in the template, but without success :( I study so many forms and apply solutions, but help in vain !. Here is my code:
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()
Template File:
<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>
Please let me know if I'm missing something here ...
source share