flag {mRpostman} | R Documentation |
Criterion constructor function to be combined in a custom search statement
Description
Criterion constructor function to be combined in a custom search statement
Usage
flag(name, negate = FALSE)
Arguments
name |
A string containing one or more flags to search for. Use
|
negate |
If |
See Also
Other custom search:
AND()
,
ImapCon
,
OR()
,
before()
,
larger_than()
,
older_than()
,
on()
,
sent_before()
,
sent_on()
,
sent_since()
,
since()
,
smaller_than()
,
string()
,
younger_than()
Examples
## Not run:
# select folder & search
con$select_folder(name = "INBOX")
# search for messages with Flag "UNSEEN" AND NOT Smaller Than 512KB.
res <- con$search(request = AND(flag("UNSEEN"),
smaller_than(size = 512000, negate = TRUE)))
## End(Not run)
[Package mRpostman version 1.1.2 Index]