cosullivan / SmtpServer

A SMTP Server component written in C#
MIT License
692 stars 163 forks source link

Best hosting environment #142

Closed reponemec closed 3 years ago

reponemec commented 3 years ago

I'm looking for a best hosting environment for your SmtpServer library. All your examples are using just a simple console application. Is .Net Core console application the best solution for hosting SmtpServer on production Windows or CentOS servers?

cosullivan commented 3 years ago

Hi,

Console App's are easy to get running which I why I have created the samples like that. However, there is no real best practice on how you would host the SmtpServer.

It could be a Console App, a Windows Service, an ASPNET Core app, it really doesn't matter.

Thanks, Cain.