Email Tracking with VBA

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
 
G

Guest

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.
 
M

migithot

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top