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

    Interface InboundEmail

    The DELIVER_WEBHOOK payload.

    interface InboundEmail {
        accepted_at_utc: number;
        attempt: number;
        envelope: WebhookEnvelope;
        event_type: string;
        headers: readonly HeaderField[];
        listener_id: string;
        message: MessageSummary;
        occurred_at_utc: number;
        raw_email: RawEmail;
        routing_decision: RoutingDecision;
        task_id: string;
        tenant_id: string;
        verdicts?: Verdicts;
    }
    Index
    accepted_at_utc: number

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

    attempt: number

    The delivery attempt number, starting at 1.

    envelope: WebhookEnvelope

    The SMTP envelope.

    event_type: string

    Always inbound_email.

    headers: readonly HeaderField[]

    Every message header in the order received.

    listener_id: string

    The listener that accepted the message.

    The parsed message header summary.

    occurred_at_utc: number

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

    raw_email: RawEmail

    Time-limited access to the raw RFC 822 message.

    routing_decision: RoutingDecision

    The final routing outcome.

    task_id: string

    The delivery task identifier, stable across retries.

    tenant_id: string

    The owning tenant.

    verdicts?: Verdicts

    The spam and malware scan results, when scanning ran.