Class EmailTemplateBase
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Base class for email templates
public abstract class EmailTemplateBase
- Inheritance
-
EmailTemplateBase
- Derived
- Inherited Members
Properties
Body
The body of the template.
[JsonProperty("body")]
public string Body { get; set; }
Property Value
From
The sender of the email.
[JsonProperty("from")]
public string From { get; set; }
Property Value
ResultUrl
The URL to redirect the user to after a successful action.
[JsonProperty("resultUrl")]
public string ResultUrl { get; set; }
Property Value
Subject
The subject of the email.
[JsonProperty("subject")]
public string Subject { get; set; }
Property Value
UrlLifetimeInSeconds
The lifetime in seconds that the link within the email will be valid for.
[JsonProperty("urlLifetimeInSeconds")]
public int? UrlLifetimeInSeconds { get; set; }
Property Value
- int?