1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| import config import smtplib from email.header import Header from email.mime.text import MIMEText
server = smtplib.SMTP_SSL(config.host, config.port)
server.login(config.username, config.password)
content = 'Hello World' content_type = 'plain' charset = 'utf-8' content = MIMEText(content, content_type, charset)
content['From'] = config.from_addr content['To'] = config.to_addr content['Subject'] = Header(config.subject, charset)
server.sendmail(config.from_addr, config.to_addr, content.as_string()) server.quit()
|