我是靠谱客的博主 傲娇巨人,最近开发中收集的这篇文章主要介绍Python 自动化发送邮件脚本,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先上代码

# @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 自动化发送邮件脚本所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部