{"id":20279263,"url":"https://github.com/coderomm/send-anonymous-mail","last_synced_at":"2026-01-20T08:08:58.561Z","repository":{"id":250584790,"uuid":"834861284","full_name":"coderomm/Send-Anonymous-Mail","owner":"coderomm","description":"Send Anonymous Mail, no data records","archived":false,"fork":false,"pushed_at":"2024-07-30T03:51:16.000Z","size":128,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T19:41:16.651Z","etag":null,"topics":["axios-react","expressjs","mongodb","nodejs","nodemailer","react","reactjs"],"latest_commit_sha":null,"homepage":"https://send-anonymous-mail.vercel.app","language":"TypeScript","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/coderomm.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":"2024-07-28T15:31:08.000Z","updated_at":"2025-01-25T08:27:37.000Z","dependencies_parsed_at":"2024-11-14T13:31:15.893Z","dependency_job_id":"e454bf8c-ec50-4713-b868-08a368aa82cf","html_url":"https://github.com/coderomm/Send-Anonymous-Mail","commit_stats":null,"previous_names":["coderomm/send-anonymous-mail"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coderomm/Send-Anonymous-Mail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderomm%2FSend-Anonymous-Mail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderomm%2FSend-Anonymous-Mail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderomm%2FSend-Anonymous-Mail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderomm%2FSend-Anonymous-Mail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderomm","download_url":"https://codeload.github.com/coderomm/Send-Anonymous-Mail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderomm%2FSend-Anonymous-Mail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28598875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: 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":["axios-react","expressjs","mongodb","nodejs","nodemailer","react","reactjs"],"created_at":"2024-11-14T13:29:10.170Z","updated_at":"2026-01-20T08:08:58.546Z","avatar_url":"https://github.com/coderomm.png","language":"TypeScript","readme":"Sure, here's the README file in Markdown format:\n\n```markdown\n# Send Anonymous Email\n\nThis project allows users to send anonymous emails through a web interface. It consists of a frontend built with React and styled using Tailwind CSS, and a backend built with Node.js, Express, and Nodemailer.\n\n## Table of Contents\n\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Prerequisites](#prerequisites)\n- [Installation](#installation)\n- [Environment Variables](#environment-variables)\n- [Usage](#usage)\n- [Deployment](#deployment)\n- [Screenshots](#screenshots)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- Send anonymous emails with a simple and clean interface.\n- Email validation and form validation.\n- Real-time status messages for email sending.\n- Backend handling with Nodemailer and Gmail.\n\n## Technologies Used\n\n### Frontend\n\n- React\n- Tailwind CSS\n- Axios\n\n### Backend\n\n- Node.js\n- Express\n- Nodemailer\n- dotenv\n- CORS\n\n## Prerequisites\n\n- Node.js (version 14 or higher)\n- npm (version 6 or higher)\n- A Gmail account with an App Password enabled for Nodemailer\n\n## Installation\n\n### Clone the Repository\n\n```sh\ngit clone https://github.com/your-username/send-anonymous-email.git\ncd send-anonymous-email\n```\n\n### Backend Setup\n\n1. Navigate to the backend directory:\n\n```sh\ncd backend\n```\n\n2. Install dependencies:\n\n```sh\nnpm install\n```\n\n3. Create a `.env` file in the `backend` directory and add your Gmail credentials:\n\n```env\nGMAIL_USER=your-email@gmail.com\nGMAIL_PASS=your-app-password\n```\n\n4. Start the backend server:\n\n```sh\nnpm start\n```\n\nThe backend server will be running on `http://localhost:5000`.\n\n### Frontend Setup\n\n1. Navigate to the frontend directory:\n\n```sh\ncd ../frontend\n```\n\n2. Install dependencies:\n\n```sh\nnpm install\n```\n\n3. Start the frontend development server:\n\n```sh\nnpm run dev\n```\n\nThe frontend will be running on `http://localhost:3000`.\n\n## Environment Variables\n\n### Backend\n\nCreate a `.env` file in the `backend` directory and add the following:\n\n```env\nGMAIL_USER=your-email@gmail.com\nGMAIL_PASS=your-app-password\nPORT=5000\n```\n\n### Frontend\n\nNo specific environment variables are required for the frontend.\n\n## Usage\n\n1. Open the frontend in your browser (`http://localhost:3000`).\n2. Fill in the form with the recipient's email address, subject, and message.\n3. Click \"Send Email\".\n4. The status of the email will be displayed below the form.\n\n## Deployment\n\n### Backend\n\n1. Push your backend code to a GitHub repository.\n2. Deploy the backend to a platform like Render or Heroku.\n3. Ensure the environment variables are set in the deployment environment.\n\n### Frontend\n\n1. Push your frontend code to a GitHub repository.\n2. Deploy the frontend to a platform like Vercel or Netlify.\n3. Ensure the frontend is configured to communicate with the deployed backend.\n\n## Screenshots\n\n![Screenshot 1](https://via.placeholder.com/600x400)\n*Caption for Screenshot 1*\n\n![Screenshot 2](https://via.placeholder.com/600x400)\n*Caption for Screenshot 2*\n\n## Contributing\n\nContributions are welcome! Please fork the repository and submit a pull request.\n\n1. Fork the repository.\n2. Create a new branch: `git checkout -b feature-name`.\n3. Make your changes and commit them: `git commit -m 'Add some feature'`.\n4. Push to the branch: `git push origin feature-name`.\n5. Open a pull request.\n\n## License\n\nThis project is licensed under the MIT License.\n```\n\nFeel free to replace placeholder text like repository URLs and screenshot links with actual content.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderomm%2Fsend-anonymous-mail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderomm%2Fsend-anonymous-mail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderomm%2Fsend-anonymous-mail/lists"}