Table of Contents

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

Name string

Display name of the sender.

Mail string

Email address of the sender.

Password string

Password for the email account.

Properties

Mail

Email address of the sender.

public string Mail { readonly get; set; }

Property Value

string

Name

Display name of the sender.

public string Name { readonly get; set; }

Property Value

string

Password

Password for the email account.

public string Password { readonly get; set; }

Property Value

string