Files
mercadodevida/project/src/modules/notifications/domain/notification.ts
2026-08-17 22:23:10 +02:00

10 lines
224 B
TypeScript

export type EmailTemplate = 'order_confirmation' | 'payment_failed' | 'order_shipped';
export interface EmailMessage {
eventId: string;
template: EmailTemplate;
recipient: string;
subject: string;
body: string;
}