Outlook VBO Get received Items - Search for multiple subjects

sebeid

New Member
Hi,

I'm trying to use the Outlook VBO Get received Items (Basic) to get certain emails with two different Subjects. For instance, I want to get all emails that's named "Application form" or "Deferment form". Is there a way I can specify to get all emails with one of these subjects?

Sebastian
 

atalla

New Member
Hey Sebastian, I guess you can try this in Get Received Items(Advanced). In the 'Filter Expression' section use the following:
"[subject] = 'Application form' OR [subject] = 'Deferment form'"
 

nbargaje

Member
Hi,

i am filtering some email from outlook, but filter is not working if i gave multiple filter criteria as you mentioned above. please see attached screenshot. please let me know if i am doing any mistake.

Thanks,
Nitin
 

Attachments

  • filtermail.png
    41.9 KB · Views: 188

mstark

New Member
Any luck using a data item or environment variable in filter expression?

My enviroment variable is text [Email Address]

Used the following in filter expression:
"[From] = '[Email Address]'"

This isn't working. Any help is appreciated!
 

MUB

New Member
I have a requirement to read an email where subject and sender will be different all the time.
Only thing that is constant is First part of the subject
For Ex: Plant Name: 1000 --- is the subject.
The text ''Plant Name:'' can be seen in the subject every time and that value is going to change for every mail.

Can I use filter expression of MS OutlookVBO (Advanced) for this requirement or is there any other way?

Thanks in advance..
 
Top