feat(ADM-018): completed feature
This commit is contained in:
9
project/src/modules/notifications/domain/notification.ts
Normal file
9
project/src/modules/notifications/domain/notification.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export type EmailTemplate = 'order_confirmation' | 'payment_failed' | 'order_shipped';
|
||||
|
||||
export interface EmailMessage {
|
||||
eventId: string;
|
||||
template: EmailTemplate;
|
||||
recipient: string;
|
||||
subject: string;
|
||||
body: string;
|
||||
}
|
||||
Reference in New Issue
Block a user