我正在尝试使用以下脚本:
import telnetlib
server = telnetlib.Telnet('mail.optonline.net', '25')
server.write('EXIT\n')
print server.read_all()
但是,它没有显示任何内容(即使我删除了server.write)。顺便说一句,这是退出telnet服务器的方法,使用EXIT(然后输入)。
答案 0 :(得分:0)
来自falsetru的SMTPLIB模块完美无缺。谢谢,假的!