Creating a Custom Outlook Rule

R

robboll

I have an MS Access application that uses Outlook Automation to start
an email thread. The subject line is somthing like: "TID(427) This is
my Subject blah blah ..."

I am trying to set Outlook up so that whenever the email response has
"TID(###)" it automatically copies that email to a it's matching
windows subdirectory. Like ...

\\MyServer\MyMailShare\TID(427) This is my Subject blah blah ...

So, from Outlook, the custom rule would need to first recgnize that
"TID(" is an incoming response to the application, then copy that
email to its associated subdirectory

The version of Outlook that I am using is 2003 and higher.

'preciate any help with this!

RBollinger
 
R

Roady [MVP]

You can only achieve this some additional VBA code. For instance;
condition: with "TID(" in the subject
action: run a script

In your script you can then further analyze the subject field and move the
item to the correct folder.
 
R

robboll

You can only achieve this some additional VBA code. For instance;
condition: with "TID(" in the subject
action: run a script

In your script you can then further analyze the subject field and move the
item to the correct folder.

--
Robert Sparnaaij [MVP-Outlook]
Coauthor, Configuring Microsoft Outlook 2003http://www.howto-outlook.com/
Outlook FAQ, HowTo, Downloads, Add-Ins and more

http://www.msoutlook.info/
Real World Questions, Real World Answers

-----




I have an MS Access application that uses Outlook Automation to start
an email thread.  The subject line is somthing like: "TID(427) This is
my Subject blah blah ..."
I am trying to set Outlook up so that whenever the email response has
"TID(###)" it automatically copies that email to a it's matching
windows subdirectory.  Like ...
\\MyServer\MyMailShare\TID(427) This is my Subject blah blah ...
So, from Outlook, the custom rule would need to first recgnize that
"TID(" is an incoming response to the application, then copy that
email to its associated subdirectory
The version of Outlook that I am using is 2003 and higher.
'preciate any help with this!
RBollinger- Hide quoted text -

- Show quoted text -

Roady -- I have purchased a lot of reference material for various
programming tasks and am poised to purchase the Outlook 2007
Programming reference. This will probably be the only Outlook VBA
task I will use it for if it in fact can help with this task. Do you
have this book? And is this task covered there? And if I need to
post portions of the code to colloborate with developers will that be
a problem?

Thanks!

RBollinger
 

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