{"id":42192875,"url":"https://github.com/ido-pluto/node-email-server","last_synced_at":"2026-01-26T23:50:32.034Z","repository":{"id":253689085,"uuid":"841040263","full_name":"ido-pluto/node-email-server","owner":"ido-pluto","description":"Simple email server to handle you domain emails easily","archived":false,"fork":false,"pushed_at":"2024-09-18T11:31:59.000Z","size":1730,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T22:31:37.063Z","etag":null,"topics":["astro-utils-forms","astrojs","caprover","dokploy","nodejs","send-email-api","send-email-using-smtp","smtp-server","typescript"],"latest_commit_sha":null,"homepage":"","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ido-pluto.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-08-11T13:14:48.000Z","updated_at":"2024-10-18T14:05:20.000Z","dependencies_parsed_at":"2024-08-18T20:23:06.649Z","dependency_job_id":"3c98f28e-1254-4bac-be58-1facf0e4a0b5","html_url":"https://github.com/ido-pluto/node-email-server","commit_stats":null,"previous_names":["ido-pluto/node-email-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ido-pluto/node-email-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ido-pluto%2Fnode-email-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ido-pluto%2Fnode-email-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ido-pluto%2Fnode-email-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ido-pluto%2Fnode-email-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ido-pluto","download_url":"https://codeload.github.com/ido-pluto/node-email-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ido-pluto%2Fnode-email-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28791702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"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":["astro-utils-forms","astrojs","caprover","dokploy","nodejs","send-email-api","send-email-using-smtp","smtp-server","typescript"],"created_at":"2026-01-26T23:50:31.508Z","updated_at":"2026-01-26T23:50:32.029Z","avatar_url":"https://github.com/ido-pluto.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node Email Server\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./docs/logo.png\" height=\"200\" /\u003e\n\u003c/div\u003e\n\u003cbr /\u003e\n\n\u003e Light weight email server for Node.js over HTTP(S) with REST API\n\nBuilt as a solution for sending emails without any third party services or complex configurations.\n\n### Features\n- Send email over HTTP(S) with REST API\n- Light weight\n- Support multiple domains\n- Easy to use, no extra services required\n- [CapRover](https://github.com/caprover/caprover)\nsupport\n\n\n### Deploy using Docker\n```bash\ndocker build -t node-email-server .\ndocker run -p 25:25 -p 80:4321 -v /path/to/store/db:/app/storage -e PASSWORD=myDashboardPassword node-email-server\n```\n\n### REST API\n```js\nconst response = await fetch(\"https://email.my-domain.com/send\", {\n    method: 'POST',\n    headers: {\n        'Content-Type': 'application/json',\n    },\n    body: JSON.stringify({\n        password: \"myPassword\",\n        from: 'example@email.my-domain.com',\n        to: 'send@example.com',\n        html: '\u003cb\u003eHello World\u003c/b\u003e',\n    }),\n});\n\nconst fails = response.json();\n\nif(fails.length === 0){\n    console.log('Email sent');\n} else {\n    console.log('Error sending email');\n}\n```\n\n### About the project\n - Built using Node.js, Astro, and lowdb\n - SMTP server using `smtp-server` package\n - Server components using `@astro-utils/forms` package\n - UI components using `rippleui` package\n\n## Screenshots\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./docs/screenshots/homePage.png\" /\u003e\n    \u003cimg src=\"./docs/screenshots/domains.png\" /\u003e\n    \u003cimg src=\"./docs/screenshots/sendEmail.png\" /\u003e\n    \u003cimg src=\"./docs/screenshots/api.png\" /\u003e\n    \u003cimg src=\"./docs/screenshots/emails.png\" /\u003e\n\u003c/div\u003e\n\n## Please Star the project if you like it\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./docs/star-please.png\" height=\"300\"/\u003e\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fido-pluto%2Fnode-email-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fido-pluto%2Fnode-email-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fido-pluto%2Fnode-email-server/lists"}