- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/subethasmtp/
- 软件文档: http://code.google.com/p/subethasmtp/w/list
软件介绍
SubEtha SMTP 是一个用Java编写的SMTP邮件服务器端的处理类库。可通过它来简单的接收客户端的邮件发送请求。示例代码:
MyMessageHandlerFactory myFactory = new MyMessageHandlerFactory() ;
SMTPServer smtpServer = new SMTPServer(myFactory);
smtpServer.setPort(25000);
smtpServer.start();