导入模块:
import yagmail
user='xxxx@163.com'
password='xxxxxx'
m = yagmail.SMTP(host='smtp.163.com',user=user,
password=password,
)
#smtp.qq.com
#smtp_ssl=True 如果是qq邮箱的话需要加这个参数
m.send(to=['sss@qq.com','dddd@163.com'],
cc=['ssss@qq.com','sssss@163.com'],
subject='明天不上课',contents='明天不上课,在家好好休息。。。',
attachments=['笔记.txt',r'C:\Users\nhy\Desktop\金牛座.xls'])
邮箱中需要修改一个参数,可以自动发邮件的……
注意:现在大部分邮箱需要开启smtp和pop功能以及第三方独立密码才能在第三方或者脚本收发邮件
网友评论