Last active
February 3, 2019 18:57
-
-
Save benbahrenburg/a09d48302207ae46f53454e9b1599755 to your computer and use it in GitHub Desktop.
MailKit InternetAddressList Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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