mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
- Add plunkEmail driver following IEmailDriver interface
- Support single and multiple recipients (up to 5 max per Plunk API)
- Handle both string and { text, html } body formats
- Include sender customization (from, name, reply)
- Add recipient validation and error handling
- Create comprehensive unit tests with 6 test cases
- Export plunkEmail from core drivers index
- Update task list with implementation progress
9 lines
328 B
TypeScript
9 lines
328 B
TypeScript
export type { ICacheDriver } from "./cache";
|
|
export { memoryCache } from "./cache/in-memory";
|
|
|
|
export type { IEmailDriver } from "./email";
|
|
export { resendEmail } from "./email/resend";
|
|
export { sesEmail } from "./email/ses";
|
|
export { mailchannelsEmail } from "./email/mailchannels";
|
|
export { plunkEmail } from "./email/plunk";
|