export interface Mail { id: string; from: string; subject: string; body: string; date: string; read: boolean; starred: boolean; attachments?: { filename: string; size: number; type: string; }[]; }