├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── adapters ├── postmark.ts └── resend.ts ├── bun.lockb ├── index.ts ├── package.json ├── tsconfig.json └── types.ts /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/README.md -------------------------------------------------------------------------------- /adapters/postmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/adapters/postmark.ts -------------------------------------------------------------------------------- /adapters/resend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/adapters/resend.ts -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/bun.lockb -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decidable-AS/fallback-email/HEAD/types.ts --------------------------------------------------------------------------------