gpt4 book ai didi

gmail - 如何从 Gmail 下载所有带有附件的电子邮件?

转载 作者:IT老高 更新时间:2023-10-28 11:39:59 25 4
gpt4 key购买 nike

如何连接到 Gmail 并确定哪些邮件有附件?然后,我想下载每个附件,在处理每条消息时打印出 Subject: 和 From:。

最佳答案

困难的 :-)

import email, getpass, imaplib, os

detach_dir = '.' # directory where to save attachments (default: current)
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")

# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)
m.select("[Gmail]/All Mail") # here you a can choose a mail box like INBOX instead
# use m.list() to get all the mailboxes

resp, items = m.search(None, "ALL") # you could filter using the IMAP rules here (check http://www.example-code.com/csharp/imap-search-critera.asp)
items = items[0].split() # getting the mails id

for emailid in items:
resp, data = m.fetch(emailid, "(RFC822)") # fetching the mail, "`(RFC822)`" means "get the whole stuff", but you can ask for headers only, etc
email_body = data[0][1] # getting the mail content
mail = email.message_from_string(email_body) # parsing the mail content to get a mail object

#Check if any attachments at all
if mail.get_content_maintype() != 'multipart':
continue

print "["+mail["From"]+"] :" + mail["Subject"]

# we use walk to create a generator so we can iterate on the parts and forget about the recursive headach
for part in mail.walk():
# multipart are just containers, so we skip them
if part.get_content_maintype() == 'multipart':
continue

# is this part an attachment ?
if part.get('Content-Disposition') is None:
continue

filename = part.get_filename()
counter = 1

# if there is no filename, we create one with a counter to avoid duplicates
if not filename:
filename = 'part-%03d%s' % (counter, 'bin')
counter += 1

att_path = os.path.join(detach_dir, filename)

#Check if its already there
if not os.path.isfile(att_path) :
# finally write the stuff
fp = open(att_path, 'wb')
fp.write(part.get_payload(decode=True))
fp.close()

哇!那是东西。 ;-) 但是在 Java 中尝试同样的方法,只是为了好玩!

顺便说一句,我在 shell 中测试过,所以可能仍然存在一些错误。

享受

编辑:

因为邮箱名称可以从一个国家更改为另一个国家,我建议执行 m.list() 并在 m.select("邮箱名称") 来避免这个错误:

imaplib.error: command SEARCH illegal in state AUTH, only allowed in states SELECTED

关于gmail - 如何从 Gmail 下载所有带有附件的电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/348630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com