I have a python script that fetches emails for /var/mail/pi and run a function called send_email() witch was generated by bing copilot
now Microsoft Outlook needs 2FA this does not work
anyone know of a solution
this emails me the output of crontab scripts, so I can see the output in my emails
here is the script
now Microsoft Outlook needs 2FA this does not work
anyone know of a solution
this emails me the output of crontab scripts, so I can see the output in my emails
here is the script
Code:
import mailboximport smtplibfrom email.mime.text import MIMETextimport subprocessdef send_email(smtp_server, smtp_port, username, password, from_addr, to_addr, subject, body): msg = MIMEText(body) msg['Subject'] = subject msg['From'] = from_addr msg['To'] = to_addr server = smtplib.SMTP(smtp_server, smtp_port) server.starttls() server.login(username, password) server.send_message(msg) server.quit()mbox = mailbox.mbox('/var/mail/pi')for message in mbox: subject = message['subject'] time = message['date'] subject = time + " " + subject print(subject) body = message.get_payload() print(body) try: try: send_email(smtp_server='smtp-mail.outlook.com',smtp_port=587,username='###',password='###',from_addr='###',to_addr=###',subject=subject,body=body) print(subprocess.getoutput("echo '' | sudo tee /var/mail/pi")) except: send_email(smtp_server='smtp-mail.outlook.com',smtp_port=587,username=###',password='###',from_addr=###',to_addr=###',subject=subject,body=body) print(subprocess.getoutput("echo '' | sudo tee /var/mail/pi")) except: print("Failed")
Statistics: Posted by kcajminer2312 — Wed Oct 09, 2024 10:54 am