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

    Interface DeliveryStatus

    The SMTP NOTIFY_WEBHOOK payload.

    interface DeliveryStatus {
        accepted_at_utc: number;
        attempt: number;
        correlation_task_id?: string;
        destination_domain?: string;
        enhanced_status_code?: string;
        listener_id: string;
        next_retry_at_utc?: number;
        occurred_at_utc: number;
        remote_host?: string;
        remote_response?: string;
        smtp_code?: number;
        source_ip?: string;
        status: StatusOutcome;
        task_id: string;
        tenant_id: string;
    }
    Index
    accepted_at_utc: number

    The Unix time, in seconds, when mxRaven accepted the message.

    attempt: number

    The delivery attempt number, starting at 1.

    correlation_task_id?: string

    Links a generated DSN back to its original task.

    destination_domain?: string

    The recipient domain.

    enhanced_status_code?: string

    The RFC 3463 enhanced status code.

    listener_id: string

    The source listener.

    next_retry_at_utc?: number

    The Unix time, in seconds, of the next attempt for a deferred status.

    occurred_at_utc: number

    The Unix time, in seconds, when this status was built.

    remote_host?: string

    The remote MTA hostname, when known.

    remote_response?: string

    The remote reply text, truncated to 512 bytes.

    smtp_code?: number

    The remote SMTP reply code.

    source_ip?: string

    The egress source address, when known.

    The delivery outcome.

    task_id: string

    The delivery task identifier, stable across attempts.

    tenant_id: string

    The owning tenant.