Class InviteUserEmailViewModel
Represents the information that is needed when creating an invitation e-mail.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity.Mail
Assembly: IRM.AspNetCore.Identity.Mail.dll
Syntax
public class InviteUserEmailViewModel : EmailViewModel
Constructors
InviteUserEmailViewModel(EmailAddress, String)
Creates a new instance of InviteUserEmailViewModel.
Declaration
public InviteUserEmailViewModel(EmailAddress to, string callbackUrl)
Parameters
EmailAddress
to
The reciever of the email. |
String
callbackUrl
The url that the user will use to accept the invitation. |
Properties
CallbackUrl
Gets or sets the url that the user will use to accept the invitation.
Declaration
public string CallbackUrl { get; set; }
Property Value
String
|