Нашел скрипт для отправки почты. Но в нем указано что работает только для ASCII символов.
import smtplib
from email.MIMEText import MIMEText
# Open a plain text file for reading. For this example, assume that
# the text file contains only ASCII characters.
fp = open(textfile, ‘rb’)
# Create a text/plain message
msg = MIMEText(fp.read())
fp.close()
msg = ‘The contents of %s’ % textfile
msg = me
msg = you
s = smtplib.SMTP()
s.connect()
s.sendmail(me, , msg.as_string())
s.close()
Как модифицировать код, чтобы можно было отправлять в кодировке cp1251, koi8-ru, utf8?