사용자 도구

사이트 도구


python:smtplib

Python SMTPLib/Email

# Python 2.x Unicode Email
 
import smtplib
from email.MIMEText import MIMEText
from email.Header import Header
 
smtp = smtplib.SMTP("smtp.host.com")
 
contents = u"Unicode 내용"
 
msg = MIMEText(contents.encode("utf-8"), "plain", "utf-8")
msg["From"] = str(Header(u"보내는이이름", "utf-8"))
msg["To"] = str(Header(u"받는이","utf-8"))
msg["Subject"] = str(Header(u"제목","utf-8"))
 
smtp.sendmail("보내는이메일주소", "받는이메일주소", msg.as_string())
python/smtplib.txt · 마지막으로 수정됨: 2012/01/03 20:03 저자 kwon37xi