With this plugin you can run campaigns based on available marketing data from the Targito platform.
Examples of plugin usage
- Display campaigns by RFM
- display campaigns based on client's date - holiday, birthday...
- view campaigns by individual metrics - spend, quantity, order frequency, order amount, popular products, popular categories, abandoned cart, etc.
Use of this plugin may incur a fee
To use it successfully, you need to have Audiences export from Targita active
Procedure to activate the plugin
Import Audience from Targito
To import data from Targito into Mailocator, use the prepared API
in Settings open the menu API and create a new key or use the existing one
Create an Audience export in Targit to send in regular batches (no more than once per hour) to the endpoint https://api.mailocator.com/api/1.0/clientdata/upload using the POST
method
Turning on the plugin
in Settings open the Plugins menu and select Targito Data Extension
Display campaign according to parameters from Audience
open the campaign filters, where you will find a new menu for filtering by Targito data
Enter a Boolean expression with JavaScript operators in the field and if it returns true
, the campaign will be run.
The object in which all the values are imported is named data
.
Example to display based on the value of _rfm_score
:
data._rfm_score==1
Example for evaluation of the current date
isToday( data.svatek )
Example for evaluating the date at an interval of 3 days before and after 5 days of the date
isToday( data.svatek, -3, 5 )