Class EmailPasswordResetBody
Represents the body of an email for password reset.
Inherited Members
Namespace: DataWeb.Identity
Assembly: DataWeb.Core.dll
Syntax
public class EmailPasswordResetBody
Properties
AppUrl
The URL of the application.
Declaration
public string AppUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
The email of the recipient.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
FromName
The sender's name to display in the email.
Declaration
public string FromName { get; set; }
Property Value
Type | Description |
---|---|
string |
IsUserName
Indicates whether the user name is to be displayed in the email.
Declaration
public bool IsUserName { get; set; }
Property Value
Type | Description |
---|---|
bool |
UserName
The user name of the recipient.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |