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
|
1
|
|||
|
|
|
The URL listed here might be of interest to you http://www.codeplex.com/InterIMAP which was extension to |
||||||
|
|
|
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:
You can download it here: http://www.lesnikowski.com/mail. |
||
|
|
|
|
@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:
|
||
|
|
|
|
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 |
||
|
|
|
|
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:
|
|||
|
|
|
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 :) |
||
|
|
|
|
the source to the ssl version of this is here: http://atmospherian.wordpress.com/downloads/ |
||
|
|