├── .github ├── renovate.json └── workflows │ ├── deploy.yml │ ├── formatter.yml │ └── main.yml ├── .gitignore ├── README.md ├── biome.json ├── bun.lock ├── package.json ├── scripts └── verify-email.ts ├── src ├── config.ts ├── cors.ts ├── get-mail-request.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>winstxnhdw/renovate"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/.github/workflows/formatter.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .wrangler/ 4 | .env 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/package.json -------------------------------------------------------------------------------- /scripts/verify-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/scripts/verify-email.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/src/cors.ts -------------------------------------------------------------------------------- /src/get-mail-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/src/get-mail-request.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstxnhdw/mail-worker/HEAD/wrangler.toml --------------------------------------------------------------------------------