@suluk/better-auth - v0.2.0
    Preparing search index...

    Interface EmailVerificationOptions

    interface EmailVerificationOptions {
        sendVerificationEmail: (
            data: { user: { email: string }; url: string; token?: string },
        ) => void | Promise<void>;
        autoSignIn?: boolean;
        sendOnSignUp?: boolean;
    }
    Index

    Properties

    sendVerificationEmail: (
        data: { user: { email: string }; url: string; token?: string },
    ) => void | Promise<void>

    send the verification email — bind to your branded-email builder.

    autoSignIn?: boolean

    sign the user in automatically after they click the verification link (default true — frictionless).

    sendOnSignUp?: boolean

    send a verification email on sign-up (default true).