Auth0 Node.js SDK - v5.1.0
    Preparing search index...

    Interface SetEmailTemplateResponseContent

    interface SetEmailTemplateResponseContent {
        template: Management.EmailTemplateNameEnum;
        body?: string | null;
        from?: string | null;
        resultUrl?: string | null;
        subject?: string | null;
        syntax?: string | null;
        urlLifetimeInSeconds?: number | null;
        includeEmailInRedirect?: boolean;
        enabled?: boolean | null;
    }
    Index

    Properties

    body?: string | null

    Body of the email template.

    from?: string | null

    Senders from email address.

    resultUrl?: string | null

    URL to redirect the user to after a successful action.

    subject?: string | null

    Subject line of the email.

    syntax?: string | null

    Syntax of the template body.

    urlLifetimeInSeconds?: number | null

    Lifetime in seconds that the link within the email will be valid for.

    includeEmailInRedirect?: boolean

    Whether the reset_email and verify_email templates should include the user's email address as the email parameter in the returnUrl (true) or whether no email address should be included in the redirect (false). Defaults to true.

    enabled?: boolean | null

    Whether the template is enabled (true) or disabled (false).