jmap-kit
    Preparing search index...

    Header fields parsed as an address-list value, as specified in RFC 5322, Section 3.4, into the EmailAddress[] type. There is an EmailAddress item for each mailbox parsed from the address-list. Group and comment information is discarded.

    type EmailAddress = {
        name?: string | null;
        value: string;
    }
    Index

    Properties

    Properties

    name?: string | null

    The display-name of the mailbox RFC 5322. If this is a quoted-string:

    • The surrounding DQUOTE characters are removed.
    • Any quoted-pair is decoded.
    • White space is unfolded, and then any leading and trailing white space is removed.

    If there is no display-name but there is a comment immediately following the addr-spec, the value of this SHOULD be used instead. Otherwise, this property is null.

    value: string

    The addr-spec of the mailbox RFC 5322.