views:

153

answers:

2

I've done plenty of outbound email processing via both SQLServer and .net web apps. But in terms of what I can do to respond to incoming email I'm starting from scratch and looking for an overview of how an asp.net (preferably examples specific to mvc apps) assembly can use input from inbound email using resources native to IIS7/winserver08.

many thx

+2  A: 

You could to start with A POP3 Client in C# .NET. This previous question can also help: Reading Email using Pop3 in C#

Rubens Farias
A: 

There isn't really anything IIS7/Windows 2008/MVC specific you do with regards to reading inbound mail. As Rubens pointed out, just go find a good .NET managed code POP3 (and IMAP if required) library.

Kev