Difference between revisions of "BEmail Content Retrieval"

From All n One's bxp software Wixi

Jump to: navigation, search
(Created page with "Content retrieval is the set of rules used to interrogate the data in an email and strip out what is required from that content. You can have as many rules as you like and tr...")
 
Line 8: Line 8:
 
Take an example email
 
Take an example email
  
<syntaxhighlight lang="">
+
<syntaxhighlight lang="prolog">
 
You have received a new voicemail from 0867952818 -  
 
You have received a new voicemail from 0867952818 -  
  
Line 20: Line 20:
  
 
The rule would look like:
 
The rule would look like:
<syntaxhighlight lang="">
+
<syntaxhighlight lang="prolog">
 
Duration #vbCrLf#strCDA_X_field_0_0#Body~
 
Duration #vbCrLf#strCDA_X_field_0_0#Body~
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 15:10, 12 September 2012

Content retrieval is the set of rules used to interrogate the data in an email and strip out what is required from that content. You can have as many rules as you like and trial and error usually dictate how effective your rules are.


Each rule is in the format

StartCharacters#EndCharacters#DestinationField#Location~

Take an example email

You have received a new voicemail from 0867952818 - 

From Caller ID 0867952818
To voicemail box 1401 - Video 1401 GXV3140 Received 12/09/2012 13:52:02 Duration 00:00:23
File     vmail_0867952818_1401_20120912125202

we want to extract the duration data.


The rule would look like:

Duration #vbCrLf#strCDA_X_field_0_0#Body~