Relative Content

Tag Archive for pythonpandasemailopenpyxlattachment

Is anyone able to identify why this script cannot add attachments?

import pandas as pd import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.mime.base import MIMEBase from email import encoders import os from datetime import datetime # Configuration SMTP_SERVER = ‘smtp-mail.outlook.com’ SMTP_PORT = 587 SMTP_USER = ” SMTP_PASSWORD = ” # Read the Excel file df = pd.read_excel(‘Test.xlsx’) # Get the current month […]