E
EFL
OK, so I have been running the following on my outlook 2000, and then
setting up a rule that moved all of the messages that I received via
BCC to a certain folder and was having no problems. Then all of a
sudden, I started getting duplicates of the BCCs. The rule does not
seem to make it get moved twice.... I am confused as to the problem.
Is there any cache that I need to clear? Something that will "reset"
the problem? I am also writing the rule I have set up below for any
comments.
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("(e-mail address removed)")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
Apply this rule after the message arrives
from _a list of all my outgoing email addresses_
perform _Mark Read_
and move it to the _From Me_ folder
and stop processing more rules.
ANY HELP IS GREATLY APPRECIATED.
EFL
setting up a rule that moved all of the messages that I received via
BCC to a certain folder and was having no problems. Then all of a
sudden, I started getting duplicates of the BCCs. The rule does not
seem to make it get moved twice.... I am confused as to the problem.
Is there any cache that I need to clear? Something that will "reset"
the problem? I am also writing the rule I have set up below for any
comments.
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("(e-mail address removed)")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
Apply this rule after the message arrives
from _a list of all my outgoing email addresses_
perform _Mark Read_
and move it to the _From Me_ folder
and stop processing more rules.
ANY HELP IS GREATLY APPRECIATED.
EFL