Filtering Mail

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to Outlook VB applications, but not new to Vb. How can i filter
incoming email based on the values of thier titles and subjects. Basically,
if the email is from this perosn, i want it to add this value to a text file.
Im not intrested in the textfile part of it, but i would appreciate some help
with the filtering part of it.
 
You can use the ItemAdd event, which tells you if an e-mail goes into a
folder, or use the Restrict function with a filter for the Subject,
which returns a Selection collection.

Please see the VBA help for samples.
 
Back
Top