Complex scenarios
In this scenario, we will analyze a more complex 'abandoned cart' scenario with multiple communication channels and several reminders to the email address. This scenario looks as follows:
The scenario starts with a trigger that responds to adding any item to the cart through the store's website. The trigger settings are as follows:
- Event attribute name - e.commerce.action - tracks events related to the cart.
- Comparison value - add - corresponds to adding a product to the cart.
After that, we have a waiting period (90 minutes on the upper branch and 15 minutes on the lower branch) to avoid disturbing the customer immediately when they just added an item to the cart.
After waiting, we perform a Conditional Split check to see if there have been any other events on the website or a purchase of a product. This check is based on two conditions: website_event and order_item_event, and they look as follows:
If there have been no additional actions on the website, and the purchase has not been completed, after waiting for 15 minutes (the lower branch of the scenario), we send the customer a Web Push notification directly on the website.
Since we plan to implement additional communication channels (Viber and email), this Web Push notification is limited to only 1 display once every 8 days to avoid excessive notifications.
The upper branch has 2 Conditional Split checks: the first one verifies additional actions and purchases (an example of settings was provided above), and the other check is for the presence of the specified email address, as our next communication channel depends on it.
If a specific client (Client tab) has the attribute email_cleaned, then we send a message to their email. If the email_cleaned attribute is not present, it means the client did not provide their email, and accordingly, we send them a message via Viber.
If the client has their email address specified, we have three repeated sends with a wait of one day (1440 minutes) between each send. Before each send, we have a similar check for website actions and completed purchases (as presented above)
In this example, we have analyzed a more complex scenario in which several communication channels (web push, Viber, email) are used, as well as multiple event directions that depend on the presence of a specified email address, and so on
Let's consider a scenario in which the trigger reacts to the client's Birthday, activates in advance (7 days before), and notifies the client through 2 different communication channels (Viber and email) that they can benefit from a discount on purchasing a product on their birthday. The scenario looks as follows:
For some specific tasks that were not previously provided for in the standard trigger interface, we can use an SQL Trigger and specify the necessary logic for its operation. In this case, the SQL Trigger checks the client's birthday and activates 7 days before it occurs.
The settings for the SQL query look like this:
In the SQL query, we add the necessary logic to the trigger, and in the trigger activation settings (column on the right), we set it to activate every day of the week at 13:00 local time.
After identifying a client with a birthday, 7 days before the event, we send the client a discount notification via Viber and Email.
After sending Viber communication, the logic of this branch concludes, but after sending Email communication, we have additional waiting, checks for purchases, and further reminders to the client about the discount.\
After sending the first Email communication, we have a wait of 4320 minutes (72 hours, or 3 days), after which checks are initiated to see if the client made a purchase during this time. The check (Conditional Split) looks like this:
The logic of the check is as follows:
-
For each client individually (Client tab), we check the event of placing an order (order_item_event).
-
Completed orders at all stages (data entry, successful payment) can be tracked through the order_status attribute, specifically the "completed" status, indicating a fully completed order.
-
Using the comparison operator "> = 1", we check if there was at least one (or more) successful orders, and if so, the scenario ends there, and the client has used the discount. However, if there was no such order, the client receives the next Email communication reminding them of the discount.
After the second communication, the logic repeats, and we again activate a timer for 4320 minutes (72 hours or 3 days). Another check with similar settings is performed to verify if the client has had at least one successful order, and if not, the client receives the final Email communication.
In general, 7 days before the Birthday, we start communication with the client and offer them a discount. During this week, the client receives communications both on Viber (once when the trigger activates) and via Email (three times throughout the week leading up to the Birthday). Therefore, through multiple communication channels, the client will definitely learn about the available discount.