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

    Interface CreateEmailTemplateRequestContent

    {
    * template: "verify_email"
    * }
    interface CreateEmailTemplateRequestContent {
        template: Management.EmailTemplateNameEnum;
        body?: string;
        from?: string;
        resultUrl?: string;
        subject?: string;
        syntax?: string;
        urlLifetimeInSeconds?: number;
        includeEmailInRedirect?: boolean;
        enabled?: boolean;
    }
    Index

    Properties

    body?: string

    Body of the email template.

    from?: string

    Senders from email address.

    resultUrl?: string

    URL to redirect the user to after a successful action.

    subject?: string

    Subject line of the email.

    syntax?: string

    Syntax of the template body.

    urlLifetimeInSeconds?: number

    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

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