CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Mail.dll
C#
using (Imap client = new Imap())
{
    client.Connect(_server);
    client.Login(_user, _password);
    client.SelectInbox();
 
    client.GetAll()
        .ConvertAll(uid => client.GetHeadersByUID(uid))
        .ConvertAll(eml => new MailBuilder().CreateFromEml(eml).Subject)
        .ForEach(Console.WriteLine);
by lesnikowski   March 30, 2010 @ 12:46pm
Tags: Mail.dll
177 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate