python电子邮件主题\ r \ n

时间:2015-06-09 10:37:09

标签: python office365 imaplib

我遇到了使用imaplib从我的邮箱中获取主题的脚本问题。

这是我的剧本:

    for mail in response[0].split():
    typ, response = imap.fetch(mail, '(RFC822)')
    for response_part in response:
        if isinstance(response_part, tuple):
            msg = email.message_from_string(response_part[1])
            for header in [ 'subject']:
                print msg["subject"]

但是我得到了这个输出:

[astreinte] [2015.06.09 07:36:04] blurp : TIMESTAMP ALERT
 Disaster is PROBLEM

我的问题是“TIMESTAMP ALERT”之后的EndOfLine,如果我得到msg.items()我可以查看:

('Subject', '[astreinte] [2015.06.09 07:36:04] ankdo2ga22 : DOFUS TIMESTAMP ALERT\r\n Disaster is PROBLEM')

所以,我不明白为什么\ r \ n存在?它是否存在于元数据中。但是在zabbix发送消息时没有添加。 我使用office365。

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

无耻插件:尝试使用我的库:https://pypi.python.org/pypi/O365

如果您使用的是Office 365,它应该让您的生活更加简单。

在回答你为什么是\ r \ n目前的问题时,这是因为Office365基于Windows。由于遗留原因,Windows使用\ r \ n进行换行。