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