Marketing use case n°1
PRODUCTS LOOPS 1: BASIC CATALOG OF PRODUCTS
You wish to send a catalog of the latest available products and their details to your customers to trigger a future purchase.
Product loop used
Insert three rows in your design created with Message Builder:
1) a one-column row where you’ll copy paste the beginning of the loop {SPLIO FOREACH PRODUCT IN...}
2) a two-column row composed by an image block on the left, where you’ll add $product.img_url$ as a link in Dynamic Url (see image options) and a text block on the right where you’ll insert the body of the loop
3) a one-column row where you’ll copy the end of the loop {SPLIO ENDFOREACH}
{SPLIO FOREACH PRODUCT IN "extid01,extid02,extid03"} |
$product.brand$ $product.name$ |
{SPLIO ENDFOREACH} |
Final result
--
Splio
Guide - Seduce me if you can!
--
Splio
Guide - 2020 Calendar: Do Loyalty Differently.
--
Splio
Guide - Design your Loyalty Program in 2 weeks.
Marketing use case n°2
PRODUCTS LOOPS 2: ADVANCED CATALOG OF PRODUCTS
No matter if some of your product images are available or not, you'll be able to display both cases in your design. You can play around with some advanced options to list the new seasonal products to your customers.
Product loop used
Insert two rows: a single row (one column) and copy paste the beginning of the loop (splio foreach product...), then insert underneath it a second row with two columns where you will copy the image on the left column and the end of the loop in the second column.
Be careful here, the ID you are looking for is in the "about" of the filter and is called "Designer ID".
{SPLIO FOREACH PRODUCT IN SEGMENT 167 LIMIT=2} |
{SPLIO IF $product.img_url$ != ""} <img src="$product.img_url$"> {SPLIO ELSE} Do not display any image {SPLIO ENDIF} |
$product.brand$ $product.name$ $product.extid$ {SPLIO ENDFOREACH} |
Final result (with images)
--
Splio
Guide - Seduce me if you can!
--
Splio
Guide - Design your Loyalty Program in 2 weeks.
Marketing use case n°3
PRODUCTS LOOPS 3: CUSTOM CATALOG OF PRODUCTS
You can narrow down the number of products you wish to display by setting a limit of up to 3 products for instance. Also, you can sort them by price according to the most expensive product, ensuring both products with or without image are displayed in your design.
Product loop used
Insert two rows: a single row (one column) and copy paste the beginning of the loop (splio foreach product...), then insert underneath it a second row with two columns where you will copy the image on the left column and the end of the loop in the second column.
{SPLIO FOREACH PRODUCT IN SEGMENT 316 ORDERBY=price DIRECTION=DESC LIMIT=3} |
{SPLIO IF $product.img_url$ != ""} <img src="$product.img_url$"> {SPLIO ELSE} Do not display any image {SPLIO ENDIF} |
$product.brand$ $product.name$ $product.price$ {SPLIO ENDFOREACH} |
Final result
--
Splio
Guide - 2020 Calendar: Do Loyalty Differently.
10€
--
Splio
Guide - Design your Loyalty Program in 2 weeks.
7€
--
Splio
Guide - Seduce me if you can!
5€
Marketing use case n°4
PRODUCTS LOOPS 4: WISH LIST
Your customer has just added 2 products to the wish list. You can easily display these 2 products, reminding your customer to purchase those products. Note that $favorites$ shall be a custom field in the contacts table and shall contain extids separated by commas (same as stores).
Product loop used
Insert three rows in your design created with Message Builder:
1) a one-column row where you’ll copy paste the beginning of the loop {SPLIO FOREACH PRODUCT IN...}
2) a two-column row composed by an image block on the left, where you’ll add $product.img_url$ as a link in Dynamic Url (see image options) and a text block on the right where you’ll insert the body of the loop
3) a one-column row where you’ll copy the end of the loop {SPLIO ENDFOREACH}
{SPLIO FOREACH PRODUCT IN $favorites$} |
$product.brand$ $product.name$ $product.price$ € $product.extid$ |
{SPLIO ENDFOREACH} |
Final result
--
Splio
Guide - 2020 Calendar: Do Loyalty Differently.
10 €
Ex. ID: 01
--
Splio
Guide - Design your Loyalty Program in 2 weeks.
5 €
Ex. ID: 02