Receive and Process Email with ASP.NET / C# [closed]
- by Arthur Chaparyan
Possible Duplicates:
Recommendations for a .NET component to access an email inbox
coding for how to receive a mail in windows apllication
What methods are there for having .NET code run and handle e-mails as they arrive?
I'm developing a social networking site that will allow users to send an email to an email address that is for posting. This is the same thing Blogger does. This allows me to take a picture with my phone and send it to [email protected] and have it posted to my profile.
The site is running IIS6 and I have full access to the server. Emails are currently being processed using the SMTP service that comes with Windows 2003 Server, but I can switch to another system without any issues. I am assuming I would have to somehow have the incoming emails either go into a folder that my application is watching or cause incoming emails to trigger a script.
can anyone point me in the right direction?