Skip to content

samir321-pixel/Sending_Mail_with_Django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sending_Mail_with_Django

Technology Stack

  • Frontend
    • HTML
    • CSS
    • Bootstrap
  • Backend
    • Django
  • Database
    • SQLite3

Tech Stack Involved



Running the Project Locally

First, clone the repository to your local machine:

git clone git@github.com:samir321-pixel/Sending_Mail_with_Django.git

Install Requirements:

pip install -r requirements.txt

Apply the migrations:

python manage.py migrate

Add your GmailID and Password in settings.py

EMAIL_HOST_USER = 'yourgmailid.com'
EMAIL_HOST_PASSWORD = 'yourgmailpassword'

Finally, run the development server:

python manage.py runserver

The project will be available at http://127.0.0.1:8000/.

Useful Resources