先上代码
# @Time
: 2022/10/17 11:42
# @Author
: fangkaitao
import smtplib
from email.message import EmailMessage
import pandas as pd
def send_email(remail, rsubject, rcontent):
email = EmailMessage()
# Creating a object for EmailMessage
email['from'] = 'The Pythoneer Here'
# Person who is sending
email['to'] = remail
# Whom we are sending
email['subject'] = rsubject
# Subject of email
email.set_content(rcontent)
# content of email
with smtplib.SMTP(host='smtp.gmail.com', port=587)as smtp:
smtp.ehlo()
# server object
smtp.starttls()
# used to send data between server and client
smtp.login("deltadelta371@gmail.com", "delta@371")
# login id and password of gmail
smtp.send_message(email)
# Sending email
print("email send to ",remail)
# Printing success message
if __name__ == '__main__':
df = pd.read_excel('list.xlsx')
length = len(df)+1
for index, item in df.iterrows():
email = item[0]
subject = item[1]
content = item[2]
可用于一些网站服务的反馈
或者客户端注册时,发送验证码功能
还有一些信息推送
等等,各发其想,还可用于许许多多的功能
最后
以上就是傲娇巨人最近收集整理的关于Python 自动化发送邮件脚本的全部内容,更多相关Python内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复