EmailAddress
Namespace: Proffer.Email.Internal
A simple email address with its optional display name.
public class EmailAddress : Proffer.Email.IEmailAddress
Inheritance Object → EmailAddress
Implements IEmailAddress
Properties
Gets or sets the email.
public string Email { get; set; }
Property Value
DisplayName
Gets or sets the display name.
public string DisplayName { get; set; }
Property Value
Constructors
EmailAddress()
Initializes a new instance of the EmailAddress class.
public EmailAddress()
EmailAddress(String, String)
Initializes a new instance of the EmailAddress class.
public EmailAddress(string email, string displayName)
Parameters
email
String
The email.
displayName
String
The display name.