Difference between revisions of "BEmail Content Retrieval"

From All n One's bxp software Wixi

Jump to: navigation, search
Line 1: Line 1:
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.
+
= Overview =
 +
 
 +
 
 +
bxp software (bxp) has the ability to retrieve emails from an email box and turn them into data records (CDAs) for processing.
 +
 
 +
 
 +
As the emails are retrieved it is possible to apply rules to these emails.
 +
 
 +
 
 +
Content Retrieval Rules are 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.
 +
 
 +
 
 +
The rules can be managed through ''Main Menu > Form Management > Form - Primary Management > Form - Email Rule Management > Choose the Form > ''
 +
 
 +
 
 +
 
 +
 
 +
= Format =
  
  
 
Each rule is in the format
 
Each rule is in the format
 +
  
 
StartCharacters#EndCharacters#DestinationField#Location~
 
StartCharacters#EndCharacters#DestinationField#Location~
 +
 +
  
 
Take an example email
 
Take an example email
Line 26: Line 46:
 
The text we want to start at is [Duration ]
 
The text we want to start at is [Duration ]
  
We want to end at the return character at the end of the line.  So we use vbCrLf (Visual Basic Carriage Return Line Feed).  This could be a space caracter or anything.  Just our example uses a return.
+
 
 +
We want to end at the return character at the end of the line.  So we use vbCrLf (Visual Basic Carriage Return Line Feed).  This could be a space character or anything.  Just our example uses a return.
 +
 
  
 
strCDA_X_field_0_0 is whatever field in your campaign database you want the data to go into.
 
strCDA_X_field_0_0 is whatever field in your campaign database you want the data to go into.
 +
  
 
Body shows this data is in the body of the email.  You could alternately use Subject.
 
Body shows this data is in the body of the email.  You could alternately use Subject.
 +
  
 
The result of this rule will extract 00:00:23 and put it in the field strCDA_X_field_0_0
 
The result of this rule will extract 00:00:23 and put it in the field strCDA_X_field_0_0
 +
 +
 +
 +
= Prioritising Email =
 +
 +
 +
This engine can also be used to flag spam and also prioritise emails.
 +
 +
 +
By adding a simple flag field,
 +
 +
  
  
 
[[Category:Module Specific:Form Management]]
 
[[Category:Module Specific:Form Management]]
 
[[Category:Topic:Communications]]
 
[[Category:Topic:Communications]]

Revision as of 20:13, 14 November 2014

1 Overview

bxp software (bxp) has the ability to retrieve emails from an email box and turn them into data records (CDAs) for processing.


As the emails are retrieved it is possible to apply rules to these emails.


Content Retrieval Rules are 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.


The rules can be managed through Main Menu > Form Management > Form - Primary Management > Form - Email Rule Management > Choose the Form >



2 Format

Each rule is in the format


StartCharacters#EndCharacters#DestinationField#Location~


Take an example email

You have received a new voicemail from 0811111111 - 

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

we want to extract the duration data.


The rule would look like:

Duration #vbCrLf#strCDA_X_field_0_0#Body~

The text we want to start at is [Duration ]


We want to end at the return character at the end of the line. So we use vbCrLf (Visual Basic Carriage Return Line Feed). This could be a space character or anything. Just our example uses a return.


strCDA_X_field_0_0 is whatever field in your campaign database you want the data to go into.


Body shows this data is in the body of the email. You could alternately use Subject.


The result of this rule will extract 00:00:23 and put it in the field strCDA_X_field_0_0


3 Prioritising Email

This engine can also be used to flag spam and also prioritise emails.


By adding a simple flag field,