06-04-22 09:14 AM
What syntax used to be for multiple subject lines?
For Ex. I want to read emails that are content with words like "RBC" and "BOA". It works if I put "%BOA%" alone but am not able to find out how I can combine both words in a single syntax.
06-04-22 10:42 AM
06-04-22 06:00 PM
"@SQL=urn:schemas:httpmail:subject LIKE '%RBC%' AND urn:schemas:httpmail:subject LIKE '%BOA%'"
Edit: But you'd also need to replace your 'Earliest' and 'Latest' fields with filter syntax. Read and Unread will also get replaced by the syntax, but since they're both True, there's nothing to add to the string for them. You should leave the 'Shared E-mail' field as-is.
"@SQL=urn:schemas:httpmail:subject LIKE '%RBC%' AND urn:schemas:httpmail:subject LIKE '%BOA%' AND urn:schemas:httpmail:datereceived>='" & AddDays(Today(),-7) &"' AND urn:schemas:httpmail:datereceived<='" & ToDateTime(Today())&"'"