gpt4 book ai didi

python - 使用 smtplib 从 Gmail 接收回复 - Python

转载 作者:太空狗 更新时间:2023-10-29 20:39:47 25 4
gpt4 key购买 nike

好的,我正在开发一种系统,这样我就可以通过短信在我的电脑上开始操作。我可以让它发送初始消息:

import smtplib  

fromAdd = 'GmailFrom'
toAdd = 'SMSTo'
msg = 'Options \nH - Help \nT - Terminal'

username = 'GMail'
password = 'Pass'

server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(username , password)
server.sendmail(fromAdd , toAdd , msg)
server.quit()

我只需要知道如何等待回复或从 Gmail 本身提取回复,然后将其存储在变量中供以后使用。

最佳答案

除了用于发送电子邮件的 SMTP,您应该使用 POP3 或 IMAP(后者更可取)。使用 SMTP 的示例(代码不是我的,请参阅下面的 url 了解更多信息):

import imaplib
mail = imaplib.IMAP4_SSL('imap.gmail.com')
mail.login('myusername@gmail.com', 'mypassword')
mail.list()
# Out: list of "folders" aka labels in gmail.
mail.select("inbox") # connect to inbox.

result, data = mail.search(None, "ALL")

ids = data[0] # data is a list.
id_list = ids.split() # ids is a space separated string
latest_email_id = id_list[-1] # get the latest

result, data = mail.fetch(latest_email_id, "(RFC822)") # fetch the email body (RFC822) for the given ID

raw_email = data[0][1] # here's the body, which is raw text of the whole email
# including headers and alternate payloads

无耻地盗自here

关于python - 使用 smtplib 从 Gmail 接收回复 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18156485/

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