diff --git a/src/lib/email-templates/registry.ts b/src/lib/email-templates/registry.ts index 715dbed..75f7c19 100644 --- a/src/lib/email-templates/registry.ts +++ b/src/lib/email-templates/registry.ts @@ -9,15 +9,11 @@ export interface TemplateEntry { to?: string } +import { template as taskReminder } from './task-reminder' + /** * Template registry — maps template names to their React Email components. - * Import and register new templates here after creating them in this directory. - * - * Example: - * import { template as welcomeTemplate } from './welcome' - * // then add to TEMPLATES: 'welcome': welcomeTemplate */ export const TEMPLATES: Record = { - // Add templates here as they are created, e.g.: - // 'welcome': welcomeTemplate, + 'task-reminder': taskReminder, }