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

    Interface Result

    Describes the outcome of a submission that reached the server.

    interface Result {
        code: number;
        message: string;
        messageRef: string;
        recipients: readonly RecipientResult[];
    }
    Index
    code: number

    The three-digit SMTP reply code of the final reply.

    message: string

    The final SMTP reply text. It is intended for humans and is not stable.

    messageRef: string

    The mxRaven message reference from the server's final message_ref=<uuid> reply. It is empty when the server did not report one.

    recipients: readonly RecipientResult[]

    Per-recipient acceptance. It is populated when the server returned individual RCPT TO responses.