概述
先上代码
# @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 自动化发送邮件脚本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复