DEV Community

Cover image for Sending Emails Using Python And Flask And Gmail
Ethan
Ethan

Posted on • Originally published at ethan-dev.com

Sending Emails Using Python And Flask And Gmail

Introduction

Hello! ๐Ÿ˜Ž
Recently I was asked on how to send emails using flask and Python, so I'd thought I'd also share how I did it and hopefully it helps you. ๐Ÿ˜ƒ


Enabling The Virtual Environment

First we need to setup the virtual environment, this can be done via the following commands:

python3 -m venv env
source env/bin/activate
Enter fullscreen mode Exit fullscreen mode

Installing The Dependencies

Next we need to install the dependencies, create a file called "requirements.txt" and add the following:

flask
Enter fullscreen mode Exit fullscreen mode

To install the dependencies run the following command:

pip install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

Next we can actually start writing the code. ๐Ÿ™‚


Coding The Server

Now we can actually move on coding the server. Open up a file called main.py and add the following imports:

from flask import Flask, request
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
Enter fullscreen mode Exit fullscreen mode

Next we need to initialize the flask app, which can be done with the following line:

app = Flask(__name__)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
Enter fullscreen mode Exit fullscreen mode

Once the app is initialized we need to define a route that takes three parameters, an address to send to, the subject of the mail and the main body of the mail.

Which can be done via the following:

@app.route("/send", methods=["POST"])
def send():
    email_address = request.form['address']
    email_subject = request.form['subject']
    email_message = request.form['message']

    sender_email = 'youremail'
    sender_password = 'your password'
    receiver_email = email_address

    message = MIMEMultipart()
    message['From'] = sender_email
    message['To'] = receiver_email
    message['Subject'] = email_subject
    message.attach(MIMEText(email_message, 'plain'))

    try:
        server = smtplib.SMTP('smtp.gmail.com', 587)
        server.starttls()
        server.login(sender_email, sender_password)
        server.sendmail(sender_email, receiver_email, message.as_string())
        server.quit()

        return 'Email Sent!'
    except Exception as e:
        return str(e)
Enter fullscreen mode Exit fullscreen mode

The function uses the three parameters and sends the mail using a gmail account, make sure to replace the variables with your own. ๐Ÿ‘€

Finally we just need to initialize the main function:

if __name__ == "__main__":
    app.run(debug=True)
Enter fullscreen mode Exit fullscreen mode

Done! ๐Ÿ˜†

The server can be tested with the following curl command:

curl --location --request POST 'localhost:5000/send' \                  
--form 'address=example@gmail.com' \
--form 'subject=Test email' \
--form 'message=Hello, this is a test email sent using curl and Flask!'
Enter fullscreen mode Exit fullscreen mode

After you've run the above command (don't forget to change the address), you should see the mail in your inbox. ๐Ÿ™‚


Conclusion

Here I have shown you how to send emails using flask, python and gmail.
I was actually surprised you don't need to code that much. ๐Ÿ˜„

Hopefully this has been of some use to you. ๐Ÿ˜

As always you can find the source code for this example via Github:
https://github.com/ethand91/flask-email

Happy Coding! ๐Ÿ˜Ž


Like me work? I post about a variety of topics, if you would like to see more please like and follow me.
Also I love coffee.

โ€œBuy Me A Coffeeโ€

If you are looking to learn Algorithm Patterns to ace the coding interview I recommend the following course

Latest comments (0)