{"id":20947760,"url":"https://github.com/alphahydrae/nodemailer-cli","last_synced_at":"2026-04-24T15:32:06.183Z","repository":{"id":66264916,"uuid":"178203409","full_name":"AlphaHydrae/nodemailer-cli","owner":"AlphaHydrae","description":"Send mails from the command line with Nodemailer","archived":false,"fork":false,"pushed_at":"2019-03-28T13:57:38.000Z","size":32,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-29T16:21:09.493Z","etag":null,"topics":["cli","command-line","docker","mail","nodemailer"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/AlphaHydrae.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2019-03-28T12:55:05.000Z","updated_at":"2021-07-04T03:07:05.000Z","dependencies_parsed_at":"2023-06-12T20:30:23.875Z","dependency_job_id":null,"html_url":"https://github.com/AlphaHydrae/nodemailer-cli","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/AlphaHydrae/nodemailer-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlphaHydrae%2Fnodemailer-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlphaHydrae%2Fnodemailer-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlphaHydrae%2Fnodemailer-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlphaHydrae%2Fnodemailer-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlphaHydrae","download_url":"https://codeload.github.com/AlphaHydrae/nodemailer-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlphaHydrae%2Fnodemailer-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32228967,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"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":["cli","command-line","docker","mail","nodemailer"],"created_at":"2024-11-19T00:12:58.298Z","updated_at":"2026-04-24T15:32:06.166Z","avatar_url":"https://github.com/AlphaHydrae.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nodemailer CLI\n\nSend mails from the command line with [Nodemailer][nodemailer].\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\n\n- [Usage](#usage)\n- [Options](#options)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n\n\n## Usage\n\nWith [npm][npm]:\n\n```bash\nnpm install -g @alphahydrae/nodemailer-cli\n\nnodemailer \\\n  --from bob@example.com --to alice@example.com \\\n  --text \"Hello Alice\" --smtp-host smtp.example.com\n```\n\nWith [npx][npx]:\n\n```bash\nnpx @alphahydrae/nodemailer-cli \\\n  --from bob@example.com --to alice@example.com \\\n  --text \"Hello Alice\" --smtp-host smtp.example.com\n```\n\nWith [Docker][docker]:\n\n```bash\ndocker run --rm -it alphahydrae/nodemailer \\\n  --from bob@example.com --to alice@example.com \\\n  --text \"Hello Alice\" --smtp-host smtp.example.com\n```\n\n\n\n## Options\n\n```\nnodemailer [options]\n\nOptions:\n  --version             Show version number                            [boolean]\n  --from, -f            Email of the sender                           [required]\n  --subject, -s         Subject of the email             [default: \"Nodemailer\"]\n  --text, -x            Body of the email                             [required]\n  --to, -t              Email(s) of the recipient(s), comma-separated if there\n                        is more than one                              [required]\n  --smtp-auth-user, -U  Username\n  --smtp-auth-pass, -P  Password\n  --smtp-host, -h       SMTP host address                             [required]\n  --smtp-ignore-tls     If this is true and smtp-secure is false then TLS is not\n                        used even if the server supports STARTTLS extension\n                                                                [default: false]\n  --smtp-port, -p       SMTP port (defaults to 587 if is secure is false or 465\n                        if true)                                        [number]\n  --smtp-proxy          TCP proxy address\n  --smtp-require-tls    If this is true and secure is false then Nodemailer\n                        tries to use STARTTLS even if the server does not\n                        advertise support for it (if the connection can not be\n                        encrypted then message is not sent)     [default: false]\n  --smtp-secure         If true the connection will use TLS when connecting to\n                        server, if false (the default) then TLS is used if\n                        server supports the STARTTLS extension (in most cases\n                        set this value to true if you are connecting to port\n                        465; keep it false for port 587 or 25)  [default: false]\n  --help                Show help                                      [boolean]\n```\n\n\n\n\n[docker]: https://www.docker.com\n[nodemailer]: https://nodemailer.com\n[npm]: https://www.npmjs.com\n[npx]: https://www.npmjs.com/package/npx\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falphahydrae%2Fnodemailer-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falphahydrae%2Fnodemailer-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falphahydrae%2Fnodemailer-cli/lists"}