Table of Contents

Enum EmailAddressRole

Namespace
MailFathom.Domain.Emails
Assembly
MailFathom.Domain.dll

States which mail header an address was written in.

public enum EmailAddressRole

Fields

Bcc = 5

The Bcc header, which is present only in a copy the sender kept.

Cc = 4

The Cc header, which names the carbon-copied recipients.

From = 1

The From header, which names the author.

ReplyTo = 2

The Reply-To header, which names where a reply is meant to go.

Sender = 0

The Sender header, which names who submitted a message written on someone else's behalf.

To = 3

The To header, which names the primary recipients.

Remarks

The role is kept rather than flattened into one participant list because the header an address appeared in is what a later filter means: "from this person" and "copied to this person" are different questions about the same address.