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

    Interface ClientOptions

    Options for a Client.

    interface ClientOptions {
        baseUrl: string;
        fetch?: FetchLike;
        secret?: string;
        timeout?: number;
        username?: string;
    }
    Index
    baseUrl: string

    The feedback service base URL, for example https://feedback.mxraven.com.

    fetch?: FetchLike

    The fetch implementation to use. Defaults to the global fetch.

    secret?: string

    The submission API key secret. Required for learning.

    timeout?: number

    The request timeout in milliseconds. Defaults to 30000.

    username?: string

    The submission API key username. Required for learning.