Microsoft Outlook创建规则运行应用程序/脚本Python

时间:2012-04-14 19:44:24

标签: python outlook rule

我创建了一个shutdown.py脚本,可以在执行时关闭计算机。我还在Microsoft Outlook中创建了一条规则,当我收到主题中包含%BLAHBLAHBLAH%的电子邮件时,该规则会执行我的Python脚本。我测试了它,它完美无瑕;但是,我的问题是:是否可以在执行之前将电子邮件的主题行传递到Python脚本中?基本上,我想在主题行中有一个关键字,它将执行某个脚本,但也能够将参数“传递”到Python脚本随后将使用的电子邮件主题行中。例如,如果我发送%shutdown30%,我的python脚本将能够解析字符串%shutdown30%并使用30作为参数在30分钟内关闭计算机。

提前感谢任何建议/意见/建议/答案:)

1 个答案:

答案 0 :(得分:34)

为什么在Outlook中创建一个规则来运行脚本,如果收到一封电子邮件,那么你可以从python中完成所有操作。

使用Python监控所有传入电子邮件的Outlook,然后在收到主题中包含%BLAHBLAH%的电子邮件时执行一些代码。这是一个例子:

import win32com.client
import pythoncom
import re

class Handler_Class(object):
    def OnNewMailEx(self, receivedItemsIDs):
        # RecrivedItemIDs is a collection of mail IDs separated by a ",".
        # You know, sometimes more than 1 mail is received at the same moment.
        for ID in receivedItemsIDs.split(","):
            mail = outlook.Session.GetItemFromID(ID)
            subject = mail.Subject
            try:
                # Taking all the "BLAHBLAH" which is enclosed by two "%". 
                command = re.search(r"%(.*?)%", subject).group(1)

                print command # Or whatever code you wish to execute.
            except:
                pass


outlook = win32com.client.DispatchWithEvents("Outlook.Application", Handler_Class)

#and then an infinit loop that waits from events.
pythoncom.PumpMessages()