First steps
User Data
- Responsive Email Editor Review
- Designing your email
- Creating Synchronized Modules
- Setting Up Responsive Email Design
- Setting Up Smart Containers
- Creating a Gmail Promotions Annotation
- Adding The Rollover Effect
- Adding Anchor Links
- Module Library
- Adding a Table to an Email
- Adding Custom Fonts
- Creating CTA Button
- Working with Images
- Creating Timer
- Using AI in the Email Editor
- Messenger Protocol Support in Email Clients and Platforms
Omnichannel
- Setting Up Widgets for Your Site
- Widgets Gamification
- Widget Calling
- Setting Up Locations for the Widget Calling Rules
- Storing data from widgets to contact fields
- Using Annoyance Safeguard
- Actions After Form Submission
- Replacing Double Opt-In System Workflow
- Creating Pop-ups via Google Tag Manager or WordPress
- Sending Yespo Widget Events to Google Analytics
- Using A/B Tests for Widgets
- Collecting Contact Information Using Request Forms
Automation
- Building and Editing Workflows
- Configuring Workflow Start/Stop Conditions
- Start Block
- Popular Blocks
- Message Blocks
- Using One from Many Message Block
- Contact Blocks
- Conditions Blocks
- Other Blocks
- Message to Segment Blocks
- Time Blocks
- Advanced Workflow Block Parameters
- Setting Up Allowed Send Time
- Using Workflow Launch History
- Webhook Workflows
- Workflow Troubleshooting
- Double Opt-In
- Welcome Сampaign
- Welcome Series Segmented by Category
- Launching a Workflow After a Contact Import
- Regular Workflow for a Segment
- Birthday Campaign
- Linking Workflow to the Button
- Using Variables from Order in Workflow
- Collecting Order Feedback
- Customer Reactivation
- Sending Extra Campaigns
- Sending Reminders at the Time Specified by the User
- Sending Campaign to Those Who Did Not Open the Previous One
- Using A/B Tests In Workflows
Personalization
Analytics
- Email Campaign Report
- Web Push Campaign Report
- Viber Campaign Report
- Mobile Push Campaign Report
- App Inbox Campaign Report
- Telegram Campaign Report
- In-App Report
- Widget Report
- Triggered Campaign Report
- AMP Campaign Report
- SMS Campaign Report
- Multilingual Campaign Report
- Setting up UTM Tags
- Revenue from Campaigns
- Tracking Campaign Performance in Google Analytics 4
- Message Analytics
Multilanguage Campaigns
Events and Behaviour Tracking
Recommendations
API
Security and Compliance
Using Preprocessor
- Definition
- Supported types
- How it works
- How to upload file for preprocessor
- How to create letter using preprocessor
- How to test data for mailing
- Examples of use
Definition
It is a mechanism for constructing dynamic content in letters on the basis of data, prepared beforehand: recommendations in letters, the mutual order of blocks, random selection of goods, urgent offers for different user categories.
All these can be realized with preprocessor without integration with the third service, routine and useless update of additional contact’s fields and use both for mass mailing and trigger emails.
Besides, you can use personalization not only in emails, but also in SMS messages.
Сapabilities of Preprocessor are very wide and they are not limited by existing functionality. We can easily expand them by adding new logic of external data handling. So if you need a unique or even “strange” feature, email us, we will discuss it and try to shortly realize your requirements.
Supported types
Next types of preprocessor are available now for public use:
- Key
- Random
Key preprocessor chooses the structure from data array by indicated key, for example, by email, and transfers it in the letter template before sending. You can prepare the list of personal recommendations especially for each contact in {email: json with recommendations} format where email acts as a key. And when sending the mailing for all contacts with the email from the list of a preprocessor, one’s json will be received and it will be used in the letter.
This approach can show each subscriber its own set of recommended goods, the sales and special offers.
Random preprocessor chooses randomly several json structures from prepared data array and transfers them in the letter. You certainly heard that block in the letter with goods offers works very good. Imagine that you have a big contact database and a huge assortment of goods. For example, you want to propose rucksacks for school for the very fetching price. If specific rucksack will be indicated, it will be sold fast and there needs to be alternative for other clients.
At the same time, you have 100 identical rucksacks in quality and attraction. They can all be loaded in Random preprocessor and 3 random models can be shown in each letter. Then rucksacks will be sold approximately evenly and success of each item can be checked by sale quantity / transfers that they brought.
How it works
In this section, the accent is more for the technical part of realization. If you are not a programmer and understood nothing here, don’t be upset – it is not necessary. But for receiving the conception of insides – I recommend you to become acquainted with this section.
It is necessary to configure two interrelated parts of the preprocessor for its mechanism started to work. Firstly, to create a file with the data structure in necessary format for loading. Secondly, add code in the letter, with the help of which the dynamic content will be generated and placed in the letter “on-the-fly” when sending it.
The Key type preprocessor allows loading personal set of goods for each client that is why the data structure needs to be next:
{“test1@mail.com” : [{...}, {...}], “test2@mail.com” : [{...}, {...}, {...}], “test3@mail.com” : [{...}, {...}]},
where test1@mail.com, test2@mail.com, test3@mail.com – recipient email-address (or phone number), the data array for substitution in the letter corresponds to each of them.
Random type preprocessor allows choosing random structure from the set for placing them in letters for recipients. The file structure for it looks following:
{“test@mail.com” : [{...}, {...}, {...}, {...}, {...}, {...}]},
in this case, any email can be indicated – it doesn’t matter; and the only array contains all data set for random selection.
When sending letters the preprocessor determines, exactly what data structure will be transferred in the letter. If Key type is used – the structure, assigned for a specific recipient, is transferred; if Random type is used – the structure is determined in random order. The resulting data array can be used in the letter with the help of special instructions, indicated as a code. These instructions include conditional operators and cycles that allows showing in a sufficiently flexible way the dynamic content in the body of the letter.
Note. The preprocessor also can be used for SMS-mailing. The principles of its work for SMS stay the same.
How to upload file for preprocessor
Using API
API method, which allows you to upload a file with data in the system, now is in development stage.
In Personal account
To upload file using the Personal account, carry out following actions:
- open settings;
- click “Upload” button
- choose preprocessor type, for example, we will choose Key type (setting preprocessor with Random type will be similar);
- drag your file of preprocessor;
- then click “Upload”.
The notification about successful uploading will be sent as a message in your Personal account and via email.
How to create letter using preprocessor
For inserting dynamic content in the letter the special template processor is used – Apache Velocity. Exactly it allows realizing conditional operators, cycles and other operations with data directly in the body of the letter. All dynamic content, available when sending, is contained in special system variable $data. After loading the file it needs to be chosen when forming the letter. For this:
- after creating the letter, click “Show settings” in the message editor;
- then choose preprocessor type (for example we chosen Key type, for adding file with Random type preprocessor actions will be similar);
- choose file, uploaded during the previous stage
Thus, uploaded file during the previous stage will be used when sending a current letter.
Data array, determined by the preprocessor, is contained in the array with “recommendations” name. To obtain access to it, use following construction:
$data.get('recommendations')
For organizing cycle by this array, write following:
#foreach($item in $data.get('recommendations'))
$item.get(‘name’)
…
#end
The name of $item variable can be arbitrary, but the field with the name “name” needs to be contained for each element in the file with data, if you are going to address to it in the letter by such name.
Conditional operation can be also easily done:
#if($item.get('discount') == 0)
…
#else
…
#end
Instead of ellipsis in both cases you can substitute arbitrary fragment of HTML-code (though keeping its general integrity within the limits of the letter).
How to test data for mailing
There is very convenient functionality in the development stage: the review of a prepared letter for a specific recipient. When it will be ready, you will be able to specify email of a specific recipient and see the letter, which will be formed for him by the preprocessor. We will make all efforts for realizing this opportunity as soon as possible.
From already available facilities for testing, we can offer the mailing for the test group. For Key type preprocessor it is necessary for you to form group of several contacts, whose emails will be contained in the data file; then choose necessary file in the message and activate mailing for this group. In the case with Random type preprocessor there is no need to additionally worry about existence of addresses in the file – it can be tested for any addresses.
Examples of use
Addressing elements by index
The result after substitution of dynamic content can look in the following way:
The letter in edit mode looks in the following way:
Addressing elements in the cycle
The letter in edit mode looks in the following way:
The result after substitution the dynamic content can look in the following way:
If you will have problems with forming velocity-code in the letter or you have more questions for more difficult examples of its use, then described in this section – address to our technical support.