Short description: A web-based email client built with Django, inspired by CS50’s Mail assignment.
- Compose and send emails to other users
- Inbox, Sent, and Archived mailboxes
- View individual emails and reply
- Archive/unarchive emails
- Mark emails as read/unread
- Python, Django, SQLite, HTML, CSS, JavaScript
- Install dependencies:
pip install -r requirements.txt
Apply migrations:
python manage.py migrate
Create a superuser (optional):
python manage.py createsuperuser
Run server:
python manage.py runserver
Open browser at http://localhost:8000