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
|
|
The URL listed here might be of interest to you http://www.codeplex.com/InterIMAP which was extension to |
|||||||||||||||
|
|
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 :) |
|||
|
|
|
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:
|
|||||||||||||
|
|
Cross posted from the other similar question. See what happens when they get so similar? I've been searching for an IMAP solution for a while now, and after trying quite a few, I'm going with AE.Net.Mail. There is no documentation, which I consider a downside, but I was able to whip this up by looking at the source code (yay for open source!) and using Intellisense. The below code connects specifically to Gmail's IMAP server:
I'm not affiliated with this library or anything, but I've found it very fast and stable. |
|||||||||||
|
|
MailSystem.NET contains all your need for IMAP4. It's free & open source. (I'm involved in the project) |
|||||||||||
|
|
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:
Please note that this is a commercial product I've created. You can download it here: http://www.limilabs.com/mail. |
||||
|
|
|
the source to the ssl version of this is here: http://atmospherian.wordpress.com/downloads/ |
|||
|
|
|
LumiSoft.ee - works great, fairly easy. Compiles with .NET 4.0. Here are the required links to their lib and examples. Downloads Main: http://www.lumisoft.ee/lsWWW/Download/Downloads/ Code Examples: are located here: ...lsWWW/Download/Downloads/Examples/ .NET: are located here: ...lsWWW/Download/Downloads/Net/ I am putting a SIMPLE sample up using their lib on codeplex (IMAPClientLumiSoft.codeplex.com). You must get their libraries directly from their site. I am not including them because I don't maintain their code nor do I have any rights to the code. Go to the links above and download it directly. I set LumiSoft project properties in my VS2010 to build all of it in .NET 4.0 which it did with no errors. Their samples are fairly complex and maybe even overly tight coding when just an example. Although I expect that these are aimed at advanced level developers in general. Their project worked with minor tweaks. The tweaks: Their IMAP Client Winform example is set in the project properties as "Release" which prevents VS from breaking on debug points. You must use the solution "Configuration Manager" to set the project to "Active(Debug)" for breakpoints to work. Their examples use anonymous methods for event handlers which is great tight coding... not real good as a teaching tool. My project uses "named" event method handlers so you can set breakpoints inside the handlers. However theirs is an excellent way to handle inline code. They might have used the newer Lambda methods available since .NET 3.0 but did not and I didn't try to convert them. From their samples I simplified the IMAP client to bare minimum. This is excellent. Larry |
||||
|
|