Sto scrivendo un semplice smtp-sender con autenticazione. Ecco il mio codiceCome impostare un set di caratteri nell'e-mail usando smtplib in Python 2.7?
SMTPserver, sender, destination = 'smtp.googlemail.com', '[email protected]', ['[email protected]']
USERNAME, PASSWORD = "user", "password"
# typical values for text_subtype are plain, html, xml
text_subtype = 'plain'
content="""
Hello, world!
"""
subject="Message Subject"
from smtplib import SMTP_SSL as SMTP # this invokes the secure SMTP protocol (port 465, uses SSL)
# from smtplib import SMTP # use this for standard SMTP protocol (port 25, no encryption)
from email.MIMEText import MIMEText
try:
msg = MIMEText(content, text_subtype)
msg['Subject']= subject
msg['From'] = sender # some SMTP servers will do this automatically, not all
conn = SMTP(SMTPserver)
conn.set_debuglevel(False)
conn.login(USERNAME, PASSWORD)
try:
conn.sendmail(sender, destination, msg.as_string())
finally:
conn.close()
except Exception, exc:
sys.exit("mail failed; %s" % str(exc)) # give a error message
Funziona perfetto, fino cerco di inviare i simboli non ASCII (cirillico russo). Come dovrei definire un set di caratteri in un messaggio per farlo mostrare in modo corretto? Grazie in anticipo!
UPD. Ho cambiato il mio codice:
text_subtype = 'text'
content="<p>Текст письма</p>"
msg = MIMEText(content, text_subtype)
msg['From']=sender # some SMTP servers will do this automatically, not all
msg['MIME-Version']="1.0"
msg['Subject']="=?UTF-8?Q?Тема письма?="
msg['Content-Type'] = "text/html; charset=utf-8"
msg['Content-Transfer-Encoding'] = "quoted-printable"
…
conn.sendmail(sender, destination, str(msg))
Quindi, prima volta che ho spectify 'testo' text_subtype =, e quindi nell'intestazione ho posto un msg [ 'Content-Type'] = "text/html; charset = utf -8 "stringa. È corretto?
UPDATE Infine, ho risolto il mio problema messaggio Si dovrebbe scrivere smth come msg = MIMEText (content.encode ('utf-8'), 'normale', 'UTF-8')
Ciao Lorcan! Che ne dici di "A" e "Da" se li specificherò nel mio messaggio (come come msg ["Da"] = "[email protected]")? Dovrei codificarlo anche io o no? –