Hello,
I am trying to filter messages from Outlook and I want to retrieve all messages that include the specific word “keyword” in the subject line, but exclude “keywords” and other combined words.
I have tried:
“@SQL=”“urn:schemas:httpmail:subject”" like ‘keyword’
but that only retrieves all mails where the subject is “keyword” and not subject fields that are e.g. “keyword and something else”.
I have also tried the following:
“@SQL=”“urn:schemas:httpmail:subject”" like ‘% keyword %’ OR ““urn:schemas:httpmail:subject”” like ‘% keyword’ OR ““urn:schemas:httpmail:subject”” like ‘keyword %’ OR ““urn:schemas:httpmail:subject”” like ‘keyword’"
but this also includes subject fields that are e.g: “this is a keyword”.
Any ideas?