Michal
Michal

Reputation: 31

c# imap/pop3 mail server

I have searched all over the web for a solution for this situation. I created an application using a PowerTCP component to receive and change mails(Imap/pop3) I created a new object for them and now all I want is to create a server*(Mail Server)* that uses Imap or pop3 mails to receive and sends mails with SMTP. I know that I need to use specific ports for it. What I want to know is how can I create an imap/pop3 object from my C# object(my class , properties, ext) using c# to send to the client email application (like outlook). I searched a lot for this and found nothing. I don't want to use any "close" server application for this because that I want to change Do I need to create it from the beginning or there is any ready to use solution for this. do you have any suggestion code template ext...

TIA Michal

Upvotes: 3

Views: 10890

Answers (2)

Franky Kraisorn
Franky Kraisorn

Reputation: 97

I believe S22.Imap is the most popular general IMAP protocol API in Nuget.

Sorry. At first I thought it was client. You can check this github for SMTP Server https://github.com/cosullivan/SmtpServer but i am just not sure it will work for IMAP or POP3.

Upvotes: -1

Nili
Nili

Reputation: 2003

Check out this site, it has examples of how to implement SMTP/POP

http://www.codeproject.com/KB/IP/Pop3MailClient.aspx

C#'s built in classes are pretty stable, use SMTP and POP3.

Good luck!

Upvotes: 0

Related Questions