@mxraven/mail - v0.2.0
    Preparing search index...

    Interface MessageSummary

    A summary of the parsed message headers.

    interface MessageSummary {
        cc?: readonly string[];
        date?: string;
        from?: readonly string[];
        message_id?: string;
        subject?: string;
        to?: readonly string[];
    }
    Index
    cc?: readonly string[]

    The decoded Cc mailboxes.

    date?: string

    The raw Date header.

    from?: readonly string[]

    The decoded From mailboxes.

    message_id?: string

    The Message-ID header.

    subject?: string

    The decoded Subject header.

    to?: readonly string[]

    The decoded To mailboxes.