399
edits
Changes
→Format
= Format =
== Rule Type 1 - Straight Content Retrieval ==
Each rule is in the format
StartCharacters#EndCharacters#DestinationField#Location~
Take an example email
The result of this rule will extract 00:00:23 and put it in the field strCDA_X_field_0_0
== Rule Type 2 - Conditional Status Flag ==
Each rule is in the format
StartCharacters#EndCharacters#DestinationField#Location~
TypeOfCondition[[SEP]]CustomNewStatus#ValueToMatch#SecondaryFieldToUpdate#Location~
Take an example email
<syntaxhighlight lang="html4strict">
You have received an email from - CheapMedicalSupplies@doc.ie
Sender:CheapMedicalSupplies@doc.ie
Message: we have cheap medical supplies
</syntaxhighlight>
We dont want to see this message in our list of live emails as it is spam. We need to create a rule that will flag any email received from ''CheapMedicalSupplies@doc.ie'' as spam
The rule would look like:
<syntaxhighlight lang="html4strict">
Update_Status_Equal[[SEP]]Spam Contact Testing Status Update#patrick.jenkins@allnone.ie#strCDA_X_Status#From~
</syntaxhighlight>
We have a few options that we can use when using the Conditional Status Flag rules, these are:
1) Exact matching - Update_Status_Equal
2) Not Matching - Update_Status_Not
3) Like Matching - Update_Status_Contains
<syntaxhighlight lang="html4strict">
Update_Status_Equal[[SEP]]Spam Contact Testing Status Update#patrick.jenkins@allnone.ie#strCDA_X_Status#From~
</syntaxhighlight>
<syntaxhighlight lang="html4strict">
Update_Status_Not[[SEP]]Spam Contact Testing Status Update#patrick.jenkins@allnone.ie#strCDA_X_Status#From~
</syntaxhighlight>
<syntaxhighlight lang="html4strict">
Update_Status_Contains[[SEP]]Spam Contact Testing Status Update#patrick.jenkins@allnone.ie#strCDA_X_Status#From~
</syntaxhighlight>
= Prioritising Email =