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