Easiest way to read hotmail emails
问题 I am looking for a library or a simple way to open a hotmail inbox and read new and old emails. A sample code would be much appreciated. Thanks SOF. 回答1: I had the same problem and the gentleman from asp.net show me this link to go download openpop: http://hpop.sourceforge.net/ The link has a test project. But all I needed was: Pop3Client pop3Client = new Pop3Client(); pop3Client.Connect("pop3.live.com", 995, true); pop3Client.Authenticate("user", "password"); Message message = pop3Client