标签:数据库 公司 contents gmail smt use 免费邮箱 tac account
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() #关闭邮箱
标签:数据库 公司 contents gmail smt use 免费邮箱 tac account
原文地址:https://www.cnblogs.com/liulilitoday/p/13096665.html