pai
    Preparing search index...

    Type Alias MailSummary

    One message in a mailList result.

    type MailSummary = {
        date: string | null;
        from: string;
        subject: string;
        uid: number;
        unread: boolean;
    }
    Index
    date: string | null

    When the message was sent, as an ISO 8601 time. null when it has no date.

    from: string

    The sender, as Name <address> or the address alone.

    subject: string

    The subject line.

    uid: number

    The message's id in its folder. mail read takes it.

    unread: boolean

    True when the message has not been read.