How to send emails with Python? Simply explained for beginners

Background

Sending emails is one of the most common functionalities in the modern world. This article is not about how email works under the hood, but how you can easily send an email using a python script.

Why use Python to send an email w…


This content originally appeared on DEV Community and was authored by Aahnik Daw

Background

Sending emails is one of the most common functionalities in the modern world. This article is not about how email works under the hood, but how you can easily send an email using a python script.

Why use Python to send an email when you can use Gmail?

  • when you know how to send an email with python, you can automate a lot of boring stuff
  • you can also integrate the email feature with your other applications
  • send out your newsletter for free

and the use cases are endless.

Requirements

To follow this tutorial you must have python 3.6 + installed in your system. At the time I am writing this article, I recommend using python 3.9.3 (the latest stable version).

Open your terminal (also called command prompt in windows), and type python --version, and you should get something like this.

❯ python --version
Python 3.9.0+

You also need to have an email server running. I will not delve deep into behind-the-scenes technology in this article. If you have a Gmail account (or any other email provider), then you are good to go.

Introducing smtplib

The Simple Mail Transfer Protocol is an internet standard communication protocol for electronic mail transmission. Mail servers and other message transfer agents use SMTP to send and receive mail messages.

Python provides smptplib which is a library used to send mail to any Internet machine with an SMTP or ESMTP listener daemon.

As smtplib is a part of the python standard library, you don't have to install anything to start using it.

Python offers another standard library called email for basic email-related operations.

Sending a simple email

So first of all let's import smptplib which has already done all the heavy lifting for us.

from smtplib import SMTP

Now we need to define some important variables to get started.

HOST = 'smtp.gmail.com' 
# use the smtp server address of your mail provider


PORT = 587 
# this if for TLS, 
# will discuss more about this in a future article

SENDER = 'youremail@gmail.com'

PASSWORD = 'your12434(893**!@password' 
# don't share this script with anyone ?
# for building real applications
# always read secrets from environment variables

Now that we have defined the variables required, let's move on to start a connection with the mail server and log in with our credentials.

server = SMTP(host=HOST, port=PORT)
# create an SMTP server object

server.connect(host=HOST, port=PORT)
# connect 


server.ehlo()
# extended hello; like saying hello

server.starttls()
server.ehlo()

server.login(user=SENDER, password=PASSWORD)
# login with your credentials

All the shitty stuff is now over, it's time to finally send the email.

Before we do that, we need to have the email address of the recipient and also the message we want to send them.

RECIPIENT = 'email@example.com'

MESSAGE = '''
Hi! How are you?

This is my first email sent from Python.

Hope to see you soon. ?
'''

Finally, one more line to send the email to destination.

server.sendmail(RECIPIENT,MESSAGE)

And that's it, we are done. ?


This content originally appeared on DEV Community and was authored by Aahnik Daw


Print Share Comment Cite Upload Translate Updates
APA

Aahnik Daw | Sciencx (2021-04-07T18:29:37+00:00) How to send emails with Python? Simply explained for beginners. Retrieved from https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/

MLA
" » How to send emails with Python? Simply explained for beginners." Aahnik Daw | Sciencx - Wednesday April 7, 2021, https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/
HARVARD
Aahnik Daw | Sciencx Wednesday April 7, 2021 » How to send emails with Python? Simply explained for beginners., viewed ,<https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/>
VANCOUVER
Aahnik Daw | Sciencx - » How to send emails with Python? Simply explained for beginners. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/
CHICAGO
" » How to send emails with Python? Simply explained for beginners." Aahnik Daw | Sciencx - Accessed . https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/
IEEE
" » How to send emails with Python? Simply explained for beginners." Aahnik Daw | Sciencx [Online]. Available: https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/. [Accessed: ]
rf:citation
» How to send emails with Python? Simply explained for beginners | Aahnik Daw | Sciencx | https://www.scien.cx/2021/04/07/how-to-send-emails-with-python-simply-explained-for-beginners/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.