├── .env.example ├── .gitignore ├── LICENSE ├── index.ts ├── package.json ├── readme.md └── renovate.json /.env.example: -------------------------------------------------------------------------------- 1 | RESEND_API_KEY="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-express-example/HEAD/LICENSE -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-express-example/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-express-example/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-express-example/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-express-example/HEAD/renovate.json --------------------------------------------------------------------------------