interface DraftMail {
    attachments: {
        id: string;
        key: null | string;
        name: string;
    }[];
    body: string;
    createdAt: Date;
    deletedAt: null | Date;
    id: string;
    isAltered: boolean;
    mailIntegrityId: string;
    openedAt: null | Date;
    recipients: Omit<{}, "publicKey">[];
    replyTo?: string;
    subject: string;
    temporaryRecipients: TemporaryMailUser[];
    type: "draft";
}

Hierarchy (view full)

Properties

attachments: {
    id: string;
    key: null | string;
    name: string;
}[]
body: string
createdAt: Date
deletedAt: null | Date
id: string
isAltered: boolean
mailIntegrityId: string
openedAt: null | Date
recipients: Omit<{}, "publicKey">[]
replyTo?: string
subject: string
temporaryRecipients: TemporaryMailUser[]
type