【学习笔记】python-配置文件和发送邮件
一、配置文件(标签、数据项)
配置文件db.conf
[DATEBASE]
config={
'host':'xxx',
'user':'xxx',
'password':'xxx',
'port':3306,
'database':'test',
}
读取配置文件
import configparser
cf=configparser.ConfigParser()
cf.read('db.conf')
config=cf.get('DATEBASE','config')
print config
二、发送邮件
1、组装内容 email.mime.text
2、发送邮件 smtplib
from email.mime.text import MIMEText
import smtplib
msg_from='xxx@qq.com'
passwd='xxx'
msg_to='xxx@qq.com'
subject='zhuti'
content='666'
msg=MIMEText(content)
msg['Subject']=subject
msg['From']=msg_from
msg['To']=msg_to
s=smtplib.SMTP_SSL("smtp.qq.com",465)
s.login(msg_from,passwd)
s.sendmail(msg_from,msg_from,msg.as_string())
s.quit()
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。