Mobile version of this pageCatching a carriage return in bash
Next:
Oxfordtube's website sucks
Related blogs
is is not the same as equal in PythonUnicode strings to ASCII ...nicely
Valuble site: Commonly Confused Characters
Entering multilanguage data in Zope
html2plaintext Python script to convert HTML emails to plain text
Related by category
Sending HTML emails in Zope
mime, html emails, iso-8859-1, mimetext, msgalternative, multi-part, unicode
26th of October 2006
Here are a few lessons learnt when sending HTML emails in Zope with unicode data. I'm still a beginner with this stuff and still probably have a lot to learn. What I've achived now works but might break with different encodings or on different systems so don't assume that these patterns will work in your setup.
To the send the email I'm using the default MailHost that comes with Zope 2.8.5. I call it's send() passing the subject line a second time because the subject line is already in the body string.
The most valuable piece of magic to learn and remember from this is that when you construct the multi-part message you have to attach the plain text before the html text. Thank you Lukasz Lakomy for that tip!
Here's the code that constructs the message and send it:
e_subject = u'Provsprängning'
e_from = u'some@spammer.com'
e_to = u'some@receiver.com'
body_html = u'<html>provsprängningen <em>av</em> kärnvapen</html>'
body_plain = u'provsprängningen *av* kärnvapen'
mime_msg = MIMEMultipart('related')
mime_msg['Subject'] = e_subject
mime_msg['From'] = e_from
mime_msg['To'] = e_to
mime_msg.preamble = 'This is a multi-part message in MIME format.'
# Encapsulate the plain and HTML versions of the message body
# in an 'alternative' part, so message agents can decide
# which they want to display.
msgAlternative = MIMEMultipart('alternative')
mime_msg.attach(msgAlternative)
# plain part
msg_txt = MIMEText(body, _charset='iso-8859-1')
msgAlternative.attach(msg_txt)
# html part
msg_txt = MIMEText(rendered_html, _subtype='html',
_charset='iso-8859-1')
msgAlternative.attach(msg_txt)
self.MailHost.send(mime_msg.as_string())
Comment
#working version as external method
# -*- coding: iso-8859-1 -*-
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
def htmlMailer(self):
e_subject = u'Sent to you through plone'
e_from = u'some@spammer.com'
e_to = u'some@receiver.com'
body_html = """<html>provsprängningen <em>av</em> kärnvapen</html>"""
body_plain = u'provsprängningen *av* kärnvapen'
mime_msg = MIMEMultipart('related')
mime_msg['Subject'] = e_subject
mime_msg['From'] = e_from
mime_msg['To'] = e_to
mime_msg.preamble = 'This is a multi-part message in MIME format.'
# Encapsulate the plain and HTML versions of the message body
# in an 'alternative' part, so message agents can decide
# which they want to display.
msgAlternative = MIMEMultipart('alternative')
mime_msg.attach(msgAlternative)
# plain part
msg_txt = MIMEText(body_plain, _charset='iso-8859-1')
msgAlternative.attach(msg_txt)
# html part
msg_txt = MIMEText(body_html, _subtype='html',
_charset='iso-8859-1')
msgAlternative.attach(msg_txt)
self.MailHost.send(mime_msg.as_string())







Save this page in del.icio.us
You welcome PeterBe :D