程序名称:inbox.py
授权协议: BSD
操作系统: 跨平台
开发语言: Python
inBox.py 是一个最简单的 Python 实现的 SMTP 服务器,异步的。因为有了Gevent 的支持,单实例每秒钟可处理一千封邮件的发送。
示例代码:
from inBox import InBox inBox = InBox() @inBox.collate def handle(to, sender, body): ... # Bind directly. inBox.serve(address='0.0.0.0', port=4467)
https://github.com/kennethreitz/inbox.py