Files
web/app/types/emailSent.ts
2026-03-02 09:45:33 +07:00

11 lines
243 B
TypeScript

export interface EmailSent {
id: string;
receiver: string;
subject: string;
content: string;
status: number;
create_time: string;
update_time: string;
}
export type EmailSentStatus = "pending" | "success" | "error"| "schedule";