vote up 1 vote down star
1

Hi,

Does anyone have any sample code in that makes use of the .Net framework that connects to googlemail servers via IMAP SSL to check for new emails?

Thanks

flag

80% accept rate
You probably only need to ask for IMAP client examples rather than something specific for googlemail which, AFAIK, is just another IMAP server. – AdamRalph Feb 13 at 12:51

7 Answers

vote up 4 vote down check

The URL listed here might be of interest to you

http://www.codeplex.com/InterIMAP

which was extension to

http://www.codeproject.com/KB/IP/imaplibrary.aspx?fid=91819&df=90&mpp=25&noise=5&sort=Position&view=Quick&fr=26&select=2562067#xx2562067xx

link|flag
this project doesnt handle ssl connections but there is a comment from the author that asks you to send him an email to request the gmail ssl code, thanks – Belliez Feb 13 at 12:50
InterIMAP isn't brilliant. It really freaks out when you connect to a large mailbox. (As it insists on reading every single header before it will allow you to do anything). – Engram May 15 at 8:37
There is a new asynchronous version of the library that addresses many of the speed issues from the previous version. – Jason Miesionczek May 21 at 17:10
vote up -1 vote down

There is no .NET framework support for IMAP. You'll need to use some 3rd party component.

Try Mail.dll email component, it's very affordable and easy to use, it also supports SSL:

Imap imap = new Imap();
imap.ConnectSSL("imapServer");

imap.User = "user";
imap.Password = "password";
imap.Login();

imap.SelectInbox();
List<long> uids = imap.SearchFlag(Flag.Unseen);
foreach (long uid in uids)
{
    string eml = imap.GetMessageByUID(uid);
    ISimpleMailMessage message = new SimpleMailMessageBuilder()
        .CreateFromEml(eml);
    Console.WriteLine(message.Subject);
    Console.WriteLine(message.TextDataString);
}
imap.Close(true);

You can download it here: http://www.lesnikowski.com/mail.

link|flag
vote up 1 vote down

@Shalini - that's because From and To are arrays of FetchItems that have more information inside (e.g. Display Name, domain, etc.), so to get just all the From email addresses, do something like:

foreach (var fAddress In fetchItem.Envelope.From)
{
      Console.Out.WriteLine("message.Envelope.From = {0}", fAddress.Address);
}
link|flag
vote up 0 vote down

I Used Lumisoft coding. From,to fields are rereived in mailbox format. Can anybody tell me how to convert mailbox to string. It's just displaying as "LumiSoft.Net.Mail.Mail_t_Mailbox[]". How to convert this to string??

Pls help

link|flag
vote up 2 vote down

Lumisoft.net has both IMAP client and server code that you can use.

I've used it to download email from Gmail. The object model isn't the best, but it is workable, and seems to be rather flexible and stable.

Here is the partial result of my spike to use it. It fetches the first 10 headers with envelopes, and then fetches the full message:

using (var client = new IMAP_Client())
{
    client.Connect(_hostname, _port, _useSsl);
    client.Authenticate(_username, _password);
    client.SelectFolder("INBOX");
     var sequence = new IMAP_SequenceSet();
    sequence.Parse("0:10");
    var fetchItems = client.FetchMessages(sequence, IMAP_FetchItem_Flags.Envelope | IMAP_FetchItlags.UID,
                                        false, true);
    foreach (var fetchItem in fetchItems)
    {
        Console.Out.WriteLine("message.UID = {0}", fetchItem.UID);
        Console.Out.WriteLine("message.Envelope.From = {0}", fetchItem.Envelope.From);
        Console.Out.WriteLine("message.Envelope.To = {0}", fetchItem.Envelope.To);
        Console.Out.WriteLine("message.Envelope.Subject = {0}", fetchItem.Envelope.Subject);
        Console.Out.WriteLine("message.Envelope.MessageID = {0}", fetchItem.Envelope.MessageID);
    }
    Console.Out.WriteLine("Fetching bodies");
    foreach (var fetchItem in client.FetchMessages(sequence, IMAP_FetchItem_Flags.All, false, true)
    {             
        var email = LumiSoft.Net.Mail.Mail_Message.ParseFromByte(fetchItem.MessageData);             
        Console.Out.WriteLine("email.BodyText = {0}", email.BodyText);

    }
}
link|flag
It appears he has changed his syntax. Instead of calling Authenticate you now call client.Login(_username, _password); And the FetchMessages has been replaced with a Fetch that works very differently. The Lumisoft code is fantastic though, but could use more samples of how to use it. – Jason Short 2 days ago
vote up 5 vote down

As the author of the above project i can say that yes it does support SSL. I am currently working on a new version of the library that will be completely asynchronous to increase the speed with which it can interact with IMAP servers. That code, while not complete, can be downloaded, along with the original synchronous library (which also supports SSL), from the code plex site linked to above.

thanks for the reference lakshmanaraj :)

link|flag
vote up 0 vote down

the source to the ssl version of this is here: http://atmospherian.wordpress.com/downloads/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.