SubEtha SMTP 介绍

SubEtha SMTP 是一个用Java编写的SMTP邮件服务器端的处理类库。可通过它来简单的接收客户端的邮件发送请求。示例代码:
MyMessageHandlerFactory myFactory = new MyMessageHandlerFactory() ;
SMTPServer smtpServer = new SMTPServer(myFactory);
smtpServer.setPort(25000);
smtpServer.start();
SubEtha SMTP 官网
http://code.google.com/p/subethasmtp/