You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/engage/audiences/linked-audiences-braze.md
+49-2Lines changed: 49 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,29 @@ When an email is sent, it lists the specific product and its related price in yo
140
140
141
141
This is an example of what your email formatted using [HTML](https://www.braze.com/docs/user_guide/message_building_by_channel/email/html_editor/creating_an_email_campaign/){:target="_blank"} and [Liquid](https://www.braze.com/docs/user_guide/personalization_and_dynamic_content/liquid){:target="_blank"} might look like in Braze:
142
142
143
-

143
+
{% raw %}
144
+
145
+
```html
146
+
Hi {{event_properties.first_name}},
147
+
<br />
148
+
<br />
149
+
Did you forget to checkout?<br />
150
+
<br />
151
+
We noticed you added some items to your shopping cart including this item: <br />
Quick, now is your chance to own this item before it sells out!
162
+
```
163
+
164
+
{% endraw %}
165
+
144
166
145
167
### Advanced Email Example
146
168
@@ -152,4 +174,29 @@ When an email is sent, it lists all of the products and their related prices in
152
174
153
175
This is an example of what your email formatted using [HTML](https://www.braze.com/docs/user_guide/message_building_by_channel/email/html_editor/creating_an_email_campaign/){:target="_blank"} and [Liquid](https://www.braze.com/docs/user_guide/personalization_and_dynamic_content/liquid){:target="_blank"} might look like in Braze:
154
176
155
-

177
+
{% raw %}
178
+
179
+
```html
180
+
Hi {{event_properties.first_name}},
181
+
<br />
182
+
<br />
183
+
Did you forget to checkout?<br />
184
+
<br />
185
+
We noticed you added some items to your shopping cart. Here's what you left: <br />
186
+
<br />
187
+
188
+
{% for products in event_properties.shopping_cart__products %}
189
+
<b>Product Name: </b>
190
+
{{products.product_name}}
191
+
<br />
192
+
<b>Product Price: </b>
193
+
{{products.product_price}} USD
194
+
<br />
195
+
<br />
196
+
197
+
{%endfor%}
198
+
199
+
Quick, now is your chance to own these items before they sell out!
0 commit comments