Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET email interception [closed]

Tags:

.net

email

Are there any good frameworks or libraries that allow a .NET application to read emails from an Exchange mailbox, parse them for data like sender, recipient, subject, and body, and mark them as processed on Exchange (mark as read, delete, etc)?

like image 953
jlpp Avatar asked Sep 13 '26 16:09

jlpp


1 Answers

Any IMAP or POP3 implementation would do.

  • http://imapnet.codeplex.com/
  • http://www.codeproject.com/KB/IP/imaplibrary.aspx
  • http://www.rebex.net/mail.net/
like image 176
jgauffin Avatar answered Sep 16 '26 06:09

jgauffin