Check my emails?
Sending emails in .NET is simple - create MailMessage and send u开发者_StackOverflowsing SmtpClient. But how do I check my Inbox i.e. get list of emails that have arrived to me?
There is nothing that implements POP or IMAP protocols in the .NET base class library, so you will need to use a third-party library (unless you want to implement them yourself). This SO question may help: https://stackoverflow.com/questions/26606/free-pop3-net-library
精彩评论