From property

EmailAddress? From
Gets or sets the "on behalf" sender of the e-mail message.

Implementation

EmailAddress? get From =>
    this.PropertyBag[EmailMessageSchema.From] as EmailAddress?;
void From=(EmailAddress? value)

Implementation

set From(EmailAddress? value) =>
    this.PropertyBag[EmailMessageSchema.From] = value;