If Item.To = "TestDistList" Then
ElseIf Item.To = "whateverElse" Then
etc.
Or a Case...Select block, or a set of If's joined by OR clauses:
If Item.To = "TestDistList" OR Item.To = "Whatever" Then
There are lots of ways to test for more than 1 condition.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Mike "YO_BEE" B" wrote in message
...
I am not sure how to go about extending my search parameters