Enum EmailAddressRole
- Namespace
- MailFathom.Domain.Emails
- Assembly
- MailFathom.Domain.dll
States which mail header an address was written in.
public enum EmailAddressRole
Fields
Bcc = 5The
Bccheader, which is present only in a copy the sender kept.Cc = 4The
Ccheader, which names the carbon-copied recipients.From = 1The
Fromheader, which names the author.ReplyTo = 2The
Reply-Toheader, which names where a reply is meant to go.Sender = 0The
Senderheader, which names who submitted a message written on someone else's behalf.To = 3The
Toheader, 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.