inbox.py是一个最简单的Python实现的SMTP服务器,异步的。因为有了Gevent的支持,单实例每秒钟可处理一千封邮件的发送。
示例代码:
frominboximportInboxinbox=Inbox()@inbox.collatedefhandle(to,sender,body):...#Binddirectly.inbox.serve(address='0.0.0.0',port=4467)inbox.py是一个最简单的Python实现的SMTP服务器,异步的。因为有了Gevent的支持,单实例每秒钟可处理一千封邮件的发送。
示例代码:
frominboximportInboxinbox=Inbox()@inbox.collatedefhandle(to,sender,body):...#Binddirectly.inbox.serve(address='0.0.0.0',port=4467)
评论