Outlook send-rule that filter on the 'From' field

99封情书 提交于 2019-12-11 06:51:26

问题


I use outlook (ms exchange) and have an individual as well as a group inbox (I'm logged in with the individual profile). I'm trying to setup a rule that will save a copy of a sent email in the group inbox if I sent the email 'From' the group email and another rule that will save a copy of a sent email in my individual inbox if I sent the email 'From' my individual email. However I cannot setup rules in the group inbox since the rules are client side and the group profile is normally not logged on and it is not possible to set a send-rule that filter on the 'From' field or Header content.

Any ideas?


回答1:


If you can't use the Rule Condition "through the specified account", then you need to create an Outlook Add-In or a VBA Macro.

You cannot use Conditions.From filter for a send rule. You get...

Invalid operation. This rule condition cannot be enabled because either the rule is read-only or invalid for the rule type, or the condition conflicts with another condition on the rule.

You could attach to the MailItem.Send and modify the MailItem.SaveSentMessagesFolder after checking the MailItem.Sender



来源:https://stackoverflow.com/questions/12285110/outlook-send-rule-that-filter-on-the-from-field

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!