We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
the lib is great! I could use some regex in searching. Like:
Currently:
$search = new SearchExpression(); $search->addCondition(new Subject("Test"));
Could be extended to:
$search = new SearchExpression(); $search->addCondition(new Subject("Test.*", true)); // true means RegEx = true
The text was updated successfully, but these errors were encountered:
Hi, what is now blocking you from using a regex like new Subject('Test.*')?
new Subject('Test.*')
In the manual I see no reference to a special regex modifier: https://secure.php.net/manual/en/function.imap-search.php
Sorry, something went wrong.
Merge pull request #198 from Slamdunk/search_escape
1079c40
Test search conditions Closes #94 #157 #188 #190
A Ddeboer\Imap\Search\RawExpression condition has been implemented in #198: you can now write custom criteria.
Ddeboer\Imap\Search\RawExpression
No branches or pull requests
Hi
the lib is great! I could use some regex in searching. Like:
Currently:
Could be extended to:
The text was updated successfully, but these errors were encountered: