Hi,
does anyone know good SMTP/IMAP server libraries for C#?
I only found some long abandoned projects.
Only SERVER SIDE libraries, please no more posts about client libs.
Thanks, Fionn
Hi,
does anyone know good SMTP/IMAP server libraries for C#?
I only found some long abandoned projects.
Only SERVER SIDE libraries, please no more posts about client libs.
Thanks, Fionn
For SMTP, there's System.Net.Mail. For IMAP, I don't know. But once you fetch the email from the server, you'll want to parse it. The MIME parsing is the hard part. For that, I use, and recommend, SharpMimeTools.
LumiSoft.Net, a library from the LumiSoft mail server, is a free server side library. The server classes (e.g. IMAP Server, POP3 Server and SMTP Server) fire events when they need information or action for your server application, for example "give me a list of messages in virtual folder XXY".