-
-
Notifications
You must be signed in to change notification settings - Fork 2
Groovy
Ben Fortuna edited this page Mar 6, 2017
·
1 revision
The Groovy SearchTermBuilder provides a less tedious way to construct javax.mail.search.SearchTerm objects. For example:
def searchTerm = new SearchTermBuilder().and() {
from('[email protected]')
subjectContains('Test')
}
The MessageBuilder allows you to construct complex multi-part messages in Groovy.
TODO