Struct From
- Namespace
- SunamoMail.Data
- Assembly
- SunamoMail.dll
Email sender credentials record.
public record struct From : IEquatable<From>
- Implements
- Inherited Members
- Extension Methods
Constructors
From(string, string, string)
Email sender credentials record.
public From(string Name, string Mail, string Password)
Parameters
NamestringDisplay name of the sender.
MailstringEmail address of the sender.
PasswordstringPassword for the email account.
Properties
Email address of the sender.
public string Mail { readonly get; set; }
Property Value
Name
Display name of the sender.
public string Name { readonly get; set; }
Property Value
Password
Password for the email account.
public string Password { readonly get; set; }