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

    Interface RecipientResult

    Reports whether a single envelope recipient was accepted.

    interface RecipientResult {
        accepted: boolean;
        address: string;
        error?: Error;
    }
    Index
    accepted: boolean

    Whether the server accepted the recipient.

    address: string

    The recipient address as submitted.

    error?: Error

    The rejection reason when RecipientResult.accepted is false.