I need to create a windows service that can listen on SMTP .
When he receives an email, I need to process it and then forward it to my real SMTP server to send it correctly.
Can someone point me to any useful source code, libraries or tutorials on how I can start doing this?
It seems that all I need is a simple TCP receiver and a message parser, then can I just send a message using the .NET SmtpClient API?
source share