How to deploy recommendation with Brevo
To deploy a recommendation with Brevo, you need to configure the tool first. If you have already done so, you can move on to the next step. https://app.gitbook.com/o/iFKI1JaxSfPoiGt4tT2k/s/6Yw9IRJ6KbbucQPwZUCZ/~/changes/368/recommendations-and-merchandising-1/how-tos/how-to-configure-your-email-integration/how-to-configure-brevo-integration
Prepare the Recommendation
Click on Recommendations

Click on paper plane icon in actions of the line, or click on edit recommendation then deployment settings button at the bottom right of the page
Go to the part : "On your email platform". And Map your recommendation variables with Brevo contact attributes.

If an attribute is missing, create it in Brevo > Contacts > Settings > Contact Attributes > Add new attribute.

Click Publish and copy the generated feed brevo link to the recommendation ID.

Add the Recommendation in Brevo Email
Create or edit a campaign using Brevo Drag & Drop editor, and insert a Dynamic Content block (not to be confused with the Text/HTML block.

In the block settings:
Use Data feed as Data source

Select your published feed brevo link to the recommendation you want to add in your mail

Insert the variables (title, image, URL, price)

Minimal example:
{% for item in feed.recos_xxxx.items | slice:"0:4" %}
<a href="{{ item.url }}">
<img src="{{ item.image }}" alt="{{ item.title }}">
</a>
<p>{{ item.title }} - {{ item.price }}</p>
{% endfor %}Last updated
Was this helpful?


