Files
web/app/types/emailSent.ts
2026-05-05 11:06:49 +07:00

12 lines
244 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";