├── .editorconfig ├── .env.dist ├── .github └── workflows │ ├── main.yaml │ └── pull-request.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── email-routing.png ├── codecov.yml ├── package.json ├── renovate.json ├── src ├── email.test.ts ├── email.ts ├── index.ts ├── splitMessage.test.ts └── splitMessage.ts ├── test └── helpers │ ├── createEmailMessage.ts │ └── createHeaders.ts ├── tsconfig.json ├── vitest.config.js ├── wrangler.toml └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.github/workflows/pull-request.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/README.md -------------------------------------------------------------------------------- /assets/email-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/assets/email-routing.png -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/codecov.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/renovate.json -------------------------------------------------------------------------------- /src/email.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/src/email.test.ts -------------------------------------------------------------------------------- /src/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/src/email.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/splitMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/src/splitMessage.test.ts -------------------------------------------------------------------------------- /src/splitMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/src/splitMessage.ts -------------------------------------------------------------------------------- /test/helpers/createEmailMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/test/helpers/createEmailMessage.ts -------------------------------------------------------------------------------- /test/helpers/createHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/test/helpers/createHeaders.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/vitest.config.js -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/wrangler.toml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbertakken/email-worker/HEAD/yarn.lock --------------------------------------------------------------------------------