我正在通过VBA在Outlook中创建规则。有一条规则应该在它们到达后适用于所有消息。在某种程度上,没有条件(这是困难的部分!)。我花了最后几个小时在MSDN上没有找到任何答案。知道怎么做吗?
另外,我想知道所有到达的邮件是否都可以标记为已读。根据{{3}},它看起来不可能,我想听听你的专家意见。我正在寻找类似的东西:
Dim oRuleNew As Outlook.Rule
Dim oMarkAsReadAction As Outlook.Action
Set oMarkAsReadAction = oRuleNew.Action."mark as un/read type of action"
With oMarkAsReadAction
.Enabled = True
.UnRead = False
End With
提前感谢您的支持,