MatchOption
Options for matching emails in an inbox. Each match option object contains a field
, should
and value
property. Together they form logical conditions such as SUBJECT
should CONTAIN
value.
Properties
Name | Type | Description | Notes |
field | FieldEnum | Fields of an email object that can be used to filter results | |
should | ShouldEnum | How the value of the email field specified should be compared to the value given in the match options. | |
value | String | The value you wish to compare with the value of the field specified using the should value passed. For example BODY should CONTAIN a value passed. | |
Enum: FieldEnum
Name | Value |
SUBJECT | "SUBJECT" |
TO | "TO" |
BCC | "BCC" |
CC | "CC" |
FROM | "FROM" |
Enum: ShouldEnum
Name | Value |
CONTAIN | "CONTAIN" |
EQUAL | "EQUAL" |