寻找一个很好的开源电子邮件服务器很好、开源、邮件服务器、电子

2023-09-04 04:58:50 作者:ˉ1'种无法叙述的伤, |

我的工作,要求我写我自己的邮件服务器的项目。我想知道是否有人有对.NET编写的开源电子邮件服务器,我可以作为一个出发点,用什么好的建议。

I'm working on a project that would require me to write my own email server. I was wondering if anyone had any good suggestions for an open source email server written in .NET that I could use as a starting point.

奖励积分,如果它的东西已经内置发送短信。

Bonus points if it has something already built in for sending text messages.

推荐答案

如果你正在寻找一个起点,考虑这些开源项目。

If you're looking for a jumping-off point, consider these open source projects.

Rnwood的SMTPSERVER - 托管在codePLEX。可以嵌入在应用一个SMTP服务器组件,使他们能够接收和使用SMTP协议处理电子邮件。看起来是相当活跃的时刻。

Rnwood's SmtpServer - hosted on CodePlex. an SMTP server component that can be embedded in application to allow them to receive and process emails using the SMTP protocol. Looks to be fairly active at the moment.

OpenSmtp.Net 。它是用C#编写的SMTP服务器,并利用 System.Web.Mail和命名空间。这个命名空间已经去precated,虽然,有利于 System.Net.Mail 的。有许多人在这个项目上,因为2005年2月没有任何活动。

OpenSmtp.Net. It's an SMTP server written in C#, and leverages the System.Web.Mail namespace. This namespace has been deprecated, though, in favour of System.Net.Mail. There's been no activity since Feb 2005 on this project.

有可能是你想要在你的产品是什么骨骼,也许可以提升code使用 System.Net.Mail 命名空间代替。

There may be the skeleton of what you'd want in your product, and perhaps you can enhance the code to use the System.Net.Mail namespace instead.