在我正在工作的应用程序中,我希望收到我的电子邮件,让我们从我的Gmail帐户中说出来。所以我设置了一个存储电子邮件地址,端口,服务器和密码的类。
我创建了一个函数,我从gmail帐户的电子邮件中获取了Subject,Body和From部分,我在备份文件夹中备份了扩展名为“.eml”的邮件。此外,我有一个“mail-list.html”模板,其中显示的列表包含上述标题和内容。一直都好到这里。
现在我如何获得连接,如果有任何消息,那么我可以在我的“mail-list.html”模板中显示(如果有的话)。 这封电子邮件对我来说是全新的,所以任何示例代码甚至指向我的方向都会很棒!
我已经检查了一些插件,例如django邮箱,但我希望它是我的最后手段。
在我正在工作的应用程序中,我希望收到我的电子邮件,让我们从我的Gmail帐户中说出来。所以我设置了一个存储电子邮件地址,端口,服务器和密码的类。
我创建了一个函数,我从gmail帐户的电子邮件中获取了Subject,Body和From部分,我在备份文件夹中备份了扩展名为“.eml”的邮件。此外,我有一个“mail-list.html”模板,其中显示的列表包含上述标题和内容。一直都好到这里。
现在我如何获得连接,如果有任何消息,那么我可以在我的“mail-list.html”模板中显示(如果有的话)。 这封电子邮件对我来说是全新的,所以任何示例代码甚至指向我的方向都会很棒!
我已经检查了一些插件,例如django邮箱,但我希望它是我的最后手段。
更新
我设法得到这样的附件......
#previous code here to get subject,body etc in my function
if message.get_content_maintype() == 'multipart':
filenames_list = []
for part in message.walk():
print("part.get_content_maintype ",part.get_content_maintype())
#find the attachment part - so skip all the other parts
if part.get_content_maintype() == 'multipart': continue
if part.get_content_maintype() == 'text': continue
if part.get('Content-Disposition') == 'inline': continue
if part.get('Content-Disposition') is None: continue
#put attachments in list
filenames_list.append(filename)
print ("filenames_list",filenames_list)
#create context for template
mail_list['attachment'] = filenames_list
现在,我将文件名放在列表中,并在我的模板中使用它们,我将它们放在mail_list ['attachment']上下文中。
当文件名是英文时我得到这个: ['myessay.pdf','test.odt']
但是当附件是用不同的语言(例如希腊语)时,我得到: ['=?UTF-8?B?zrXOs86zz4HOsc + Gzr8xLmRvYw ==?=','=?UTF-8?B? zrXOs86zz4HOsc + Gzr8yLmRvYw ==?=','=?UTF-8?B?zrXOs86zz4HOsc + Gzr8xMi5kb2M =?=']
如上所示,列表中有三个附件,分别为“,”。
如何解码或编码它们?我不知道这里适合什么。
答案 0 :(得分:0)
所以我已经明白了......我希望这有助于其他人...... 我正在引用获取附件的代码部分。
#some code before to require the server variable from the model where
#I store all the required fields for the connction(port,e-mail address etc)
...
...
...
pop3 = poplib.POP3_SSL(server) # or "POP3" if SSL is not supported
msg_list = pop3.list()
pop3.list()
#Get messages from server:
messages = [pop3.retr(i) for i in range(1, len(pop3.list()[1]) + 1)]
# Concat message pieces:
messages = ["\n".join(m[1]) for m in messages]
#Parse message intom an email object:
messages = [parser.Parser().parsestr(m) for m in messages]
for message in messages:
mail_list = {}
for item in message.items():
#code to get subject,from,date
...
...
#and now to get the attachments of each message
for part in message.walk():
#find the attachment part - so skip all the other parts
if part.get_content_maintype() == 'multipart': continue
if part.get_content_maintype() == 'text': continue
if part.get('Content-Disposition') == 'inline': continue
if part.get('Content-Disposition') is None: continue
#get filename
filename = part.get_filename()
#this is for encoding other than latin-letter-languages
if decode_header(filename)[0][1] is not None:
filename = str(decode_header(filename[0][0]).decode(decode_header(filename)[0][1])
filenames_list.append(filename)
mail_list['attachment'] = filenames_list
context['messages'] = mail_list
在我的模板中,为了使文件正确显示,我还必须像这样迭代'附件':
{% for d in messages %}
/*subject,from,date = parts of the message I have got inside the function before the code I am displaying*/
{{ d.subject }}
{{ d.from }}
{{ d.date }}
{% for t in d.attachment %}{{ t }}{% endfor %}
{% endfor %}