This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author acapnotic
Recipients
Date 2002-10-26.10:11:04
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=9300

Ok, here's your smaller version.  In Python 2.2.2, this
makes a message with a base64 encoded body which is not
automagically decoded by my email client.  In Python 2.2.1,
the body is cleartext. 

#!/usr/bin/env python2.2
from email.MIMEText import MIMEText
from email import Encoders

print MIMEText("e-mail message body", 'html', "utf-8",
Encoders.encode_7or8bit)
History
Date User Action Args
2007-08-23 14:07:21adminlinkissue626119 messages
2007-08-23 14:07:21admincreate