python持續(xù)刪除郵件
2023-02-15 11:06 作者:網(wǎng)絡(luò)愛好者聚集地 | 我要投稿
while True:
? ? import imaplib
? ? box = imaplib.IMAP4_SSL('imap.189.cn', 993)
? ? # 第一個參數(shù)為郵箱名,第二個參數(shù)為郵箱密碼。
? ? box.login("賬號", "授權(quán)碼")
? ? box.select('Inbox')
? ? typ, data = box.search(None, 'ALL')
? ? # 郵件列表
? ? msgList = data[0].split()
? ? count = len(msgList) - 1
? ? for i in range(0, count):
? ? ? ? print("index:%d" % i)
? ? ? ? box.store(msgList[count - i], '+FLAGS', '\\Deleted')
? ? box.expunge()
? ? box.close()
? ? box.logout()
? ? print("Over")
標簽: