Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an SMTP Server c# [closed]

Tags:

c#

smtp

I am currently working on an email server that when it receives an email it will it add it to a queue, and if it fails to be sent it can then get retried and also based on what it receives sends an auto reply message.

What I am looking at being able to do, is the email server can also be an smtp server, so the user could configure, let's say php or another email client use my email server smtp and it can receive the message and then process it.

Is this something that is possible and how can I get it started, haven't found that much help on Google, it needs to work with mono (linux) and normal .net (Windows).

Thanks for any help you can provide

like image 794
Boardy Avatar asked Jul 12 '12 17:07

Boardy


People also ask

How do I create a free SMTP server?

How to get free SMTP? A free SMTP server is provided by a huge number of platforms like Pepipost, Sendinblue, and Gmail for sending bulk emails. Just check in their websites, sign up, integrate and start using for free bulk mails.

Can I build my own email server?

As is evident, setting up your own email server is not that difficult. In fact, it should take you less than an hour to get it up and running, if you don't run into any unexpected issues. However, in case you're looking for more advanced features, it is advisable to hire an IT professional to set it up for you.


1 Answers

Here are examples of SMTP server implementation in C#:
Create a simple SMTP server in C#
SMTP and POP3 Mail Server

like image 146
Raman Zhylich Avatar answered Sep 20 '22 19:09

Raman Zhylich