Email Tracking with VBA

  • Thread starter Thread starter migithot
  • Start date Start date
M

migithot

Hi,
I use outlook 2003 on windows XP and would like a more
powerfull way of tracking emails than sorting by "Conversation".
Espicially as the conversation field is no good if the subject is
changed.

What I was hoping for is VBA/rule where it searches the
whole body of a message and if the body of that message is fully
contained within the body of another message the smaller message is
moved to another folder..

If you need me to clarify this then please ask don't
hestiate to ask.

Thanks

C
 
Use the MailItem.Body property to get at the contents, and compare against
other messages using functions from the VBA Strings class. You can iterate
through other messages by using the MAPIFolder.Items collection, using the
Restrict method if you want to filter on certain values. Use MailItem.Move
(MAPIFolder) to move the items to the folder you want.
 
Use the MailItem.Body property to get at the contents, and compare against
other messages using functions from the VBA Strings class. You can iterate
through other messages by using the MAPIFolder.Items collection, using the
Restrict method if you want to filter on certain values. Use MailItem.Move
(MAPIFolder) to move the items to the folder you want.

--
Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.)
Try Picture Attachments Wizard for Outlook:http://www.collaborativeinnovations.ca
Blog:http://blogs.officezealot.com/legault/







- Show quoted text -

I will give that a go and get back on how I get on..

thanks for your help...

Chris
 
Back
Top