Sending Emails With Python
You probably found this tutorial because you want to send emails using Python. Perhaps you want to receive email reminders from your code, send a confirmation email to users when they create an account, or send emails to members of your organization to remind them to pay their dues. Sending emails manually is a time-consuming and error-prone task, but it’s easy to automate with Python.
In this tutorial you’ll learn how to:
-
Set up a secure connection using
SMTP_SSL()
and.starttls()
-
Use Python’s built-in
smtplib
library to send basic emails -
Send emails with HTML content and attachments using the
email
package -
Send multiple personalized emails using a CSV file with contact data
-
Use the Yagmail package to send email through your Gmail account using only a few lines of code
You’ll find a few transactional email services at the end of this tutorial, which will come in useful when you want to send a large number of emails.
Getting Started
Python comes with the built-in smtplib
module for sending emails using the Simple Mail Transfer Protocol (SMTP). smtplib
uses the RFC 821 protocol for SMTP. The examples in this tutorial will use the Gmail SMTP server to send emails, but the same principles apply to other email services. Although the majority of email providers use the same connection ports as the ones in this tutorial, you can run a quick Google search to confirm yours.
To get started with this tutorial, set up a Gmail account for development, or set up an SMTP debugging server that discards emails you send and prints them to the command prompt instead. Both options are laid out for you below. A local SMTP debugging server can be useful for fixing any issues with email functionality and ensuring your email functions are bug-free before sending out any emails.