Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 666 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 666 Bytes

How to Send Email in Django

In this tutorial, you’ll learn how to send email using Django and Python. How to send multiple emails at a time to users. Integrate SendGrid SMTP with Django. How to use Django Email console to print emails in terminals. Display Email success with Django Messages.

Setup

  1. Create a folder and put all the files inside it.
  2. Create a virtual environtment - virtualenv env
  3. Activate VirtualENV - Ubuntu - source env/bin/activate | Windows - . .\env\Scripts\activate
  4. Run requirements.txt - pip3 install -r requirements.txt
  5. Run the Application - python3 manage.py runserver
  6. Go to - http://localhost:8000/