我想制作一个 python 脚本,每 30 分钟发送一封带有附件 (txt) 的电子邮件。这是我发送带有附件的电子邮件的代码。它的工作没有任何问题。但是,我需要帮助来弄清楚如何按时发送。import smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartfrom email.mime.base import MIMEBasefrom email import encodersimport os.pathemail = 'myaddress@gmail.com'password = 'password'send_to_email = 'sentoaddreess@gmail.com'subject = 'This is the subject'message = 'This is my message'file_location = 'C:\\Users\\You\\Desktop\\attach.txt'msg = MIMEMultipart()msg['From'] = emailmsg['To'] = send_to_emailmsg['Subject'] = subjectmsg.attach(MIMEText(message, 'plain'))filename = os.path.basename(file_location)attachment = open(file_location, "rb")part = MIMEBase('application', 'octet-stream')part.set_payload((attachment).read())encoders.encode_base64(part)part.add_header('Content-Disposition', "attachment; filename= %s" % filename)msg.attach(part)server = smtplib.SMTP('smtp.gmail.com', 587)server.starttls()server.login(email, password)text = msg.as_string()server.sendmail(email, send_to_email, text)server.quit()
1 回答
慕婉清6462132
TA贡献1804条经验 获得超2个赞
两种方案供您选择
您可以考虑安排您的 Python 脚本以特定时间间隔运行。这意味着,每个脚本运行都会发送一封电子邮件,当您希望电子邮件停止时,您将停止自动化任务而不是停止脚本。如果您运行的是 Windows 操作系统,他们有一个名为Task Scheduler的内置应用程序来为您管理。
选项二是使用 time.sleep() 函数。这种方法意味着脚本将继续运行并每 30 分钟发送一封电子邮件。当您希望电子邮件停止时,必须停止脚本。
import time
while True:
{insert your email send code here}
time.sleep(60*30) # this is in seconds, so 60 seconds x 30 mins
添加回答
举报
0/150
提交
取消