Sending emails with attachments is a common task in many applications. It allows you to share data and documents easily. In this article, we'll explore how to send emails with CSV file attachments using Python.
In this tutorial, we will learn how to send emails with CSV attachments using Python.
Introduction
CSV (Comma-Separated Values) is a popular format for storing tabular data. It's widely used for spreadsheets, databases, and data interchange. Sending CSV attachments via email can be particularly useful for sharing reports, data exports, or any other structured information.
We'll use the built-in smtplib and email libraries in Python to accomplish this task.
Prerequisites
Before we begin, make sure you have the following prerequisites:
- Python installed on your system.
- A valid email account with SMTP server details.
Sending Emails With CSV Attachment Using Python
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication
from email.mime.text import MIMETextimport smtplib
def send_mail():
# Create a multipart message
msg = MIMEMultipart()
body_part = MIMEText(MESSAGE_BODY, 'plain')
msg['Subject'] = EMAIL_SUBJECT
msg['From'] = EMAIL_FROM
msg['To'] = EMAIL_TO
# Add body to email
msg.attach(body_part)
# open and read the CSV file in binary
with open(PATH_TO_CSV_FILE,'rb') as file:
# Attach the file with filename to the email
msg.attach(MIMEApplication(file.read(), Name=FILE_NAME))
# Create SMTP object smtp_obj = smtplib.SMTP(SMTP_SERVER, SMTP_PORT)
# Login to the server smtp_obj.login(SMTP_USERNAME, SMTP_PASSWORD)
# Convert the message to a string and send it
smtp_obj.sendmail(msg['From'], msg['To'], msg.as_string())
smtp_obj.quit()
Variables:
EMAIL_SUBJECT
= Subject of the emailEMAIL_FROM
=Receiver’s email addressEMAIL_TO
= Senders email addressMESSAGE_BODY
= Email bodyPATH_TO_CSV_FILE
= Path to the zip fileFILE_NAME
= Filename for the email attachmentSMTP_SERVER
= SMTP serverSMTP_PORT
= SMTP portSMTP_USERNAME
= Username for SMTPSMTP_PASSWORD
= SMTP password
Since these variables include sensitive data I always recommend feeding them from environment variables however you can also pass them as arguments to the send_mail
function.
Explanation
First, we are importing all the necessary modules for the function then inside the function, we are creating a multipart message using MIMEMultipart
object. Since the multipart object takes arguments in key-value pairs therefore we are providing all the necessary arguments such as message body, sender's address, receiver address in the same manner.
Next, we are opening the CSV file in binary form and attaching the binary stream to the email using MIMEApplication
method.
Then we are using Python's built-in SMTP module and creating an SMTP session object by providing the login credentials and finally sending the mail.
Note that in case you want to send multiple CSV files in the same mail you can create a list of files and loop over them and attach it to the email like this.
.....
# create file listcsv_files = ['path_to_csv_1','path_to_csv_2']
# loop over files
for file in csv_files:
with open(file,'rb') as file:
# Attach the file with filename to the email
msg.attach(MIMEApplication(file.read(), Name=FILE_NAME)).....
Conclusion
Sending emails with CSV attachments using Python is a straightforward process. The smtplib and email libraries provide the necessary tools to compose and send emails with attachments. Whether you need to share reports, data exports, or any other structured information, this approach allows you to automate the process and enhance communication with your recipients.