Personal tools

Log in

Changes

From All n One's bxp software Wixi

Jump to: navigation, search

BEmail Content Retrieval

1,531 bytes added, 09:30, 18 December 2014
Format
= Format =
 
== Rule Type 1 - Straight Content Retrieval ==
Each rule is in the format
StartCharacters#EndCharacters#DestinationField#Location~
 
 
== Rule Type 1 - Straight Content Retrieval ==
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 =