I am trying to send email with HTML and embadded image. Email sending working fine and its also attaching the image in email but its not showing the image in HTML (inline). I used Content:ID in view and cid in template but no success :(. I explore so many forms and apply solutions but in vain please help!. Here is my code:
html_content = render_to_string('newsletters/ newsletter_template.html', vars) text_content = strip_tags(html_content) to = 'myem...@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: <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> -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.