I see the one problem with a reference to multipart.Body. I'm going to use multipart.Data for testing.
Main Topics
Browse All TopicsHi
I cannot find a working sample of how to log onto a POP3 mail server, check for messages, download the msg and any attachments etc
Please Do Not suggest http://www.codeproject.com
1)
Pop3Component multipart = (Pop3Component) enumerator.Current;
Response.ClearByte[] b = Convert.FromBase64String(m
Response.ContentType = multipart.ContentType;
Response.AddHeader("conten
Response.OutputStream.Writ
Response.End();
There is no reference to Response anywhere and I cannot find it in System.Net , .web or anything
2) multipart.Body is not recognised
3) I have messages in the specified pop account but the mail check returns 0 messages waiting
Lots of references on the web to POP DLL's but they are ALL commercial! Isn't there a FREE way of doing it as with SMTP ? Sending mail with attachments is a breeze, just can't seem to find a free POP solution. Full points to a working solution.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks for your input so far Steve, I have located my entire project here http://www.cottontech.com/
Thanks in advance. Points upped to 350 and all yours for a working project : ) I have removed my email credentials from the Pop3 project above.
see this link:
http://www.lumisoft.ee/lsW
it has a complete implementation of a mail server and all the sources
hth,
A.
Thanks Guys; Agarici's LumiSoft solution looks incredibly versatile and could be perfect, however there doesn't seem to be much documentation on the net for use as a reference in C#. I have made some small steps such as:
using using LumiSoft.Net;
.
.
LumiSoft.Net.POP3.Client.P
POP.Connect("mail.isphost.
POP.Authenticate("my_usern
but need to know how to exploit the LumiSoft.Net.Mime methods to extract attachments (and of course how to log in and check for messages! )
- But can't get much further as the help files (.chm) all open 'The page cannot be displayed', and as I said there doesn't seem to be anything on the net. Would be great to use this as it also exposes FTP server features and the whole thing looks great. Point split if some help (or even a nice sample project) can be sourced. I have increased the points to 400.
there is something wrong with your chm file, since mine works fine
for examples of using mime class you could look into the server source file because it uses mime class to format the message.
it is easy to use it... if i remember correctly you only have to set properties like To, CC, body, subject, etc on a Mime object then just call Construct method, it will return the byte array - the message mime formated.
hth,
A.
I will have to put some time aside in the next week or two to examine it. Thanks guys, and especially Steve for his hands on help; I will compile the CodeProject POP client into a DLL and see if that helps. I need a quick solution and only POP at this stage so the first option may prove the simplest to implement. Will work on this : )
Business Accounts
Answer for Membership
by: SteveGTRPosted on 2005-08-28 at 14:59:47ID: 14772669
I didn't find any problems with the code having bad references. Did you attempt to include the library in your project and following the instructions under the "Code" section?