edgeport - v1.0.6
    Preparing search index...

    Interface ParsedAddress

    The pieces of a parsed email address.

    1.0.4

    interface ParsedAddress {
        address: string;
        domain?: string;
        local: string;
        name?: string;
    }
    Index
    address: string

    The bare address with any display name and angle brackets removed.

    domain?: string

    The domain part (everything after the last @), or absent if the address has no @.

    local: string

    The local part (everything before the last @), or the whole address if there is no @.

    name?: string

    The display name, when the input used the Name <addr> form; otherwise absent.