Link to home
Start Free TrialLog in
Avatar of jeesrinu
jeesrinu

asked on

Access emails and there image attachments from an C#.net app

Hi All,

This is Krishna, in my application i want to access all the mails by providing the required email username and password, and from those emails i want to get the some mails attachments i.e attachments of type images.
if any body know any way or any libraries.
please post those links and codes.

Thanks and Regards
V.S.R.Krishna Raju
Avatar of ksrsrinivasan
ksrsrinivasan
Flag of United States of America image

If i un derstand you corectly, you like to read emails and/or attacements.This is relatively easy to to do if your email provider supports POP3 and/or IMAP protocols. There are several free/commercial products availabe to read emails from servers, just google POP3 or IMPA clients in  .net in google you'll get it.  If you would like to implement your own you just have to read through and understand RFC on IMAP and POP3 and implemet your own solution on sockets.
Avatar of jeesrinu
jeesrinu

ASKER

Hi Thanks

For your comment's and please send the link to access mails and there attachments. by using the pop3 or imap protocols
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This code project article has a neat implementation of POP3 Client and links to some useful information on POP3 and MIME
http://www.codeproject.com/KB/IP/NetPopMimeClient.aspx
ghjg