{"id":15604121,"url":"https://github.com/cusspvz/contact-email.microservice","last_synced_at":"2025-08-23T02:05:20.525Z","repository":{"id":44677854,"uuid":"140280602","full_name":"cusspvz/contact-email.microservice","owner":"cusspvz","description":"📩 A configurable Microservice that centralizes contact requests","archived":false,"fork":false,"pushed_at":"2022-01-31T13:59:38.000Z","size":75,"stargazers_count":10,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-13T01:45:23.444Z","etag":null,"topics":["contact","docker","email","microservice","nodemailer","recaptcha","send"],"latest_commit_sha":null,"homepage":"","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/cusspvz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-09T12:14:07.000Z","updated_at":"2025-04-21T11:06:30.000Z","dependencies_parsed_at":"2022-09-05T08:02:04.777Z","dependency_job_id":null,"html_url":"https://github.com/cusspvz/contact-email.microservice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cusspvz/contact-email.microservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusspvz%2Fcontact-email.microservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusspvz%2Fcontact-email.microservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusspvz%2Fcontact-email.microservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusspvz%2Fcontact-email.microservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cusspvz","download_url":"https://codeload.github.com/cusspvz/contact-email.microservice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusspvz%2Fcontact-email.microservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271732346,"owners_count":24811309,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["contact","docker","email","microservice","nodemailer","recaptcha","send"],"created_at":"2024-10-03T03:23:43.579Z","updated_at":"2025-08-23T02:05:20.370Z","avatar_url":"https://github.com/cusspvz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Contact Email Microservice \n### :envelope_with_arrow: A configurable Microservice that centralizes contact requests\n\n\n```\n Repos:\n\n GITHUB: github.com/cusspvz/contact-email.microservice\n NPM: @cusspvz/contact-email.microservice\n DOCKER: cusspvz/contact-email.microservice\n```\n\n## Features\n\n### Anti-Spam\n+ reCAPTCHA\n+ CORS\n\n### Client\n+ GMail\n+ SMTP\n\n### Others\n+ `/healthz` - healthcheck route\n+ support for a random string at the subject to prevent gmail group/trimming\n\n## Usage\n\n### Docker\n\n```\ndocker pull cusspvz/contact-email.microservice\ndocker run -ti --rm --env-file path/to/settings.env cusspvz/contact-email.microservice\n```\n\n## Configuration\n\n### Nodemailer\n\n#### `NODEMAILER_SERVICE`\n+ Default: `null`\n+ Description: Defines a service for the transport\n\n#### `NODEMAILER_HOST`\n+ Default: `false`\n+ Description: Sets the host to connect to.\n\n#### `NODEMAILER_SECURE`\n+ Default: `false`\n+ Description: Set this variable as `1` if you want the transport to use secure ports\n\n#### `NODEMAILER_AUTH`\n+ Default: `false`\n+ Description: Set this variable as `1` if you want to setup authentication\n\n#### `NODEMAILER_TYPE`\n+ Default: `false`\n+ Description: Sets the authentication type. (needed for OAuth2)\n+ Note: Requires `NODEMAILER_AUTH` to be set\n\n#### `NODEMAILER_ACCESS_TOKEN`\n+ Default: `false`\n+ Description: Sets the token on authentication. (needed for OAuth2)\n+ Note: Requires `NODEMAILER_AUTH` to be set\n\n#### `NODEMAILER_USER`\n+ Default: `false`\n+ Description: Sets the user on authentication.\n+ Note: Requires `NODEMAILER_AUTH` to be set\n\n#### `NODEMAILER_PASS`\n+ Default: `false`\n+ Description: Sets the password on authentication.\n+ Note: Requires `NODEMAILER_AUTH` to be set\n\n### Email \n\n#### `EMAIL_PREVENT_GROUPING`\n+ Default: `1`\n+ Description: Defines if subject gets an extra string to prevent email grouping\n+ Note: Accepts 1 and 0\n\n\n### CORS\n\n#### `CORS_ORIGIN_REGEXP`\n+ Default: `null`\n+ Description: Defines a CORS origin based on a regexp\n+ Note: Please insert the regexp without the slashes\n+ Example: `(?:(www|marketing).)website.(com|org)`\n\n\n#### `CORS_ORIGIN_COMMA_SEP`\n+ Default: `null`\n+ Description: Defines a CORS origin based on a comma separated string\n+ Note: Please insert the urls without extra spaces\n+ Example: `website.com,website.org,www.website.com,www.website.org`\n\n\n### reCAPTCHA\n\n#### `RECAPTCHA`\n+ Default: `null`\n+ Description: Set this variable as `1` if you want to setup reCAPTCHA\n\n#### `RECAPTCHA_PUBLIC_KEY`\n+ Default: `null`\n+ Description: Defines the reCAPTCHA Public key\n+ Note: Requires `RECAPTCHA` to be set.\n\n\n#### `RECAPTCHA_PRIVATE_KEY`\n+ Default: `null`\n+ Description: Defines the reCAPTCHA Private key\n+ Note: Requires `RECAPTCHA` to be set.\n\n\n\n### Server\n\n#### `SERVER_PORT`\n+ Default: `8080`\n+ Description: Set the HTTP server port\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcusspvz%2Fcontact-email.microservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcusspvz%2Fcontact-email.microservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcusspvz%2Fcontact-email.microservice/lists"}