如何创建 Outlook 2010 规则以在主题关键字上使用 AND 布尔值

Chr*_*her 3 microsoft-outlook microsoft-outlook-2010 rules email-filter

我使用的是 Outlook 2010,我只能添加一个规则查询,该查询OR在主题行匹配上使用布尔运算符。我想使用AND布尔运算符,但无法弄清楚如何实现这一点。

我的 Outlook 2010 规则查询如下所示:

Apply this rule after the message arrives
from foo@bar
  and with 'foo' or 'bar' or 'baz' in the subject
assign it to the Foo Bar Baz category
Run Code Online (Sandbox Code Playgroud)

我真正想要的是:

Apply this rule after the message arrives
from foo@bar
  and with 'foo' and 'bar' and 'baz' in the subject
assign it to the Foo Bar Baz category
Run Code Online (Sandbox Code Playgroud)

我不会写 VBA 代码,所以这对我来说不是一个解决方案。如果有人知道如何实现这一目标,我会很高兴收到您的来信。

我注意到,在Outlook 2010 RULES - How to use OR boolean 问题中,有一个建议,即AND布尔运算符是 Outlook 2010 中主题匹配规则的默认值,但我没有看到这种行为全部。

Cha*_*eRB 5

这是我过去用于解决相同问题的方法。它需要更多的工作,但有一种方法可以通过使用类别来解决这个问题。

如果找到第一个词并使用第二个规则查找另一个词和第一个规则分配的类别,则变通方法使用分配类别。如果找到两个词,则第二个规则可以执行操作,或者如果您想检查第三个词,则添加另一个类别。

这是解释如何做到这一点的文章