python小记12:发邮件
Posted liulilitoday
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python小记12:发邮件相关的知识,希望对你有一定的参考价值。
import yamail
# import yagmail 这个模块,发中文附件是乱码
user = ‘2472xxxxx@qq.com‘ #邮箱账号
password =‘irsfdvzkwxbrdjfj‘ #邮箱密码 #如果是163,qq,126等申请的免费邮箱的话, 密码就是授权码,授权码一般在邮箱的设置里面
# 如果是公司自己的邮箱,那就是密码
host =‘smtp.qq.com‘ #如果是qq邮箱的话, host = ‘smpt.qq.com
mail = yamail.SMTP(host=host,user=user,password=password)
mail.send(
to = [‘2370854004@qq.com‘],
cc = [‘1822297047@qq.com‘],
subject =‘每天不吃饭‘,
contents=‘好好对自己‘,
attachments=[‘gtm_account.xls‘,‘数据库导入excel.py‘]
)
mail.close() #关闭邮箱
以上是关于python小记12:发邮件的主要内容,如果未能解决你的问题,请参考以下文章