Skip to content

Instantly share code, notes, and snippets.

@benbahrenburg
Last active February 3, 2019 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benbahrenburg/a09d48302207ae46f53454e9b1599755 to your computer and use it in GitHub Desktop.
Save benbahrenburg/a09d48302207ae46f53454e9b1599755 to your computer and use it in GitHub Desktop.
MailKit InternetAddressList Example
foreach (var summary in inbox.Fetch(0, -1, MessageSummaryItems.UniqueId | MessageSummaryItems.BodyStructure))
{
var tos = summary.Envelope.To;
var replyToList = summary.Envelope.ReplyTo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment