jmap-kit
    Preparing search index...

    Type Alias EmailAddressGroup

    Header fields parsed as an address-list value, as specified in RFC 5322, Section 3.4, into the EmailAddressGroup[] type. Consecutive mailbox values that are not part of a group are still collected under an EmailAddressGroup object to provide a uniform type.

    type EmailAddressGroup = {
        addresses: EmailAddress[];
        name?: string | null;
    }
    Index

    Properties

    Properties

    addresses: EmailAddress[]

    The mailbox values that belong to this group, represented as EmailAddress objects.

    name?: string | null

    The display-name of the group RFC 5322, or null if the addresses are not part of a group. If this is a quoted-string, it is processed the same as the name in the EmailAddress type.