Class EmailPasswordRemindBody
Represents the email body content for a password reminder email.
Inherited Members
Namespace: DataWeb.Identity
Assembly: DataWeb.Core.dll
Syntax
public class EmailPasswordRemindBody
Properties
AppUrl
Gets or sets the URL for the application.
Declaration
public string AppUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
Gets or sets the email address of the user.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
FromName
Gets or sets the name of the sender of the email.
Declaration
public string FromName { get; set; }
Property Value
Type | Description |
---|---|
string |
IsPassword
Gets or sets a value indicating whether the email body contains the user's password.
Declaration
public bool IsPassword { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsUserName
Gets or sets a value indicating whether the user identifier is the username.
Declaration
public bool IsUserName { get; set; }
Property Value
Type | Description |
---|---|
bool |
Logins
Gets or sets the logins associated with the user.
Declaration
public IEnumerable<UserLogin> Logins { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<UserLogin> |
ResetUrl
Gets or sets the URL for resetting the user's password.
Declaration
public string ResetUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
UserName
Gets or sets the username of the user.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |