Maciej
Maciej

Reputation: 7961

Check my emails?

Sending emails in .NET is simple - create MailMessage and send using SmtpClient. But how do I check my Inbox i.e. get list of emails that have arrived to me?

Upvotes: 0

Views: 109

Answers (1)

EMP
EMP

Reputation: 61971

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

Upvotes: 2

Related Questions