我正在IMAPClient
使用Python
. 我可以下载电子邮件中的附件。我只对 Excel 文件感兴趣。
我有兴趣从电子邮件中提取收件人列表。知道怎么做Python
吗?
这是可能有用的代码片段
for ind_mail in emails:
msg_string = ind_mail['RFC822'].decode("utf-8")
#print(msg_string.decode("utf-8"))
email_msg = email.message_from_string(msg_string)
for part in email_msg.walk():
# Download only Excel File
filetype = part.get_content_type()
if(filetype == 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'):
#download