Skip to content

Commit 8137136

Browse files
authored
turning screenshots of html back into code [netlify-build]
1 parent eddf053 commit 8137136

File tree

1 file changed

+49
-2
lines changed

1 file changed

+49
-2
lines changed

src/engage/audiences/linked-audiences-braze.md

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,29 @@ When an email is sent, it lists the specific product and its related price in yo
140140

141141
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:
142142

143-
![A screenshot of the basic email](/docs/engage/images/braze_basic_email.png)
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 />
152+
<br />
153+
<b>Product Name: </b>
154+
{{event_properties.shopping_cart__products[0].product_name}}
155+
<br />
156+
<b>Product Price: </b>
157+
{{event_properties.shopping_cart__products[0].product_price}} USD
158+
<br />
159+
<br />
160+
161+
Quick, now is your chance to own this item before it sells out!
162+
```
163+
164+
{% endraw %}
165+
144166

145167
### Advanced Email Example
146168

@@ -152,4 +174,29 @@ When an email is sent, it lists all of the products and their related prices in
152174

153175
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:
154176

155-
![A screenshot of the advanced email](/docs/engage/images/braze_advanced_email.png)
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!
200+
```
201+
202+
{% endraw %}

0 commit comments

Comments
 (0)