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";