{"id":24179881,"url":"https://github.com/lonyasha/cs50w-mail","last_synced_at":"2026-04-05T22:31:56.815Z","repository":{"id":271714287,"uuid":"914337767","full_name":"lonyasha/cs50w-mail","owner":"lonyasha","description":"Mail is a single-page email client. It allows users to send, receive, view, archive, and reply to emails through a dynamic interface that communicates with a backend API. This project is part of CS50's Web Programming with Python and JavaScript course.","archived":false,"fork":false,"pushed_at":"2025-01-09T13:46:14.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-30T23:48:57.883Z","etag":null,"topics":["ajax","cs50w","django","email-client","html-css","javascript","python","rest-api","single-page-applications","sqlite","web-development"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lonyasha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-09T11:59:02.000Z","updated_at":"2025-01-09T13:46:17.000Z","dependencies_parsed_at":"2025-01-09T14:50:07.387Z","dependency_job_id":null,"html_url":"https://github.com/lonyasha/cs50w-mail","commit_stats":null,"previous_names":["lonyasha/cs50-web-mail","lonyasha/cs50w-mail"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lonyasha/cs50w-mail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lonyasha%2Fcs50w-mail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lonyasha%2Fcs50w-mail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lonyasha%2Fcs50w-mail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lonyasha%2Fcs50w-mail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lonyasha","download_url":"https://codeload.github.com/lonyasha/cs50w-mail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lonyasha%2Fcs50w-mail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31452899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ajax","cs50w","django","email-client","html-css","javascript","python","rest-api","single-page-applications","sqlite","web-development"],"created_at":"2025-01-13T06:11:14.246Z","updated_at":"2026-04-05T22:31:56.758Z","avatar_url":"https://github.com/lonyasha.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mail\n\n**Mail** is an email client built as part of **[CS50's Web Programming with Python and JavaScript](https://cs50.harvard.edu/web/2020/)** course. This project allows users to send, view, and organize emails through a single-page web application that interacts with a backend API to manage mailboxes, emails, and user interactions. The front-end of the email client is built using JavaScript, HTML, and CSS, enabling dynamic updates without page reloads.\n\n## About the Project\n\nIn this project, I developed an email client with the following core features:\n\n- **Inbox, Sent, and Archive Mailboxes**: Users can navigate between different mailboxes and view emails.\n- **Composing Emails**: Users can compose and send emails to others.\n- **Viewing Emails**: Users can read email content, including the sender, recipients, subject, body, and timestamp.\n- **Archiving Emails**: Users can archive and unarchive emails.\n- **Replying to Emails**: Users can reply to received emails, with the reply pre-filled based on the original email's content.\n\nThe project uses JavaScript to manage the dynamic user interface, making API calls to interact with the server and update the client-side content.\n\n## Features\n\n- **User Authentication**: Register, login, and manage user accounts.\n- **Mailbox Management**: View emails in Inbox, Sent, and Archive folders.\n- **Composing Emails**: Compose new emails and send them to specified recipients.\n- **Viewing Emails**: Display details of individual emails with sender, recipients, subject, body, and timestamp.\n- **Archiving**: Archive or unarchive emails.\n- **Reply to Emails**: Reply to emails with pre-filled content (including recipient, subject, and body).\n- **Real-time Updates**: Use JavaScript for dynamic updates of mailboxes, emails, and forms without reloading the page.\n\n## Technologies Used\n\n- **Python** (Django for back-end)\n- **JavaScript** (for handling dynamic content)\n- **HTML/CSS**\n- **SQLite** (for database storage)\n\n## Setup and Installation\n\nTo run this project locally, follow these steps:\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/lonyasha/cs50w-mail.git\n2. **Navigate into the project directory**:\n   ```bash\n   cd cs50w-mail\n3. **Make migrations for the mail app:**:\n   ```bash\n   python manage.py makemigrations mail\n4. **Apply the migrations to set up the database**:\n   ```bash\n   python manage.py migrate\n5. **Run the server**:\n   ```bash\n   python manage.py runserver\n6. **Access the application**: Open your browser and navigate to http://127.0.0.1:8000\n\n### Key Points:\n- All installation and setup instructions are placed in properly formatted code blocks.\n- This allows for easy copying and pasting directly into the terminal.\n\n---\n\nThis project is a part of **[CS50's Web Programming with Python and JavaScript](https://cs50.harvard.edu/web/2020/)** course by Harvard University. The course provided a comprehensive introduction to web development, and this project was designed to showcase the skills learned throughout the course.\n\nThank you for visiting! 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flonyasha%2Fcs50w-mail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flonyasha%2Fcs50w-mail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flonyasha%2Fcs50w-mail/lists"}