Creating winning targeted marketing strategy with customer insights
Are you ready to transform your marketing strategy? Watch an insightful webinar with Ruohonjuuri, tailored specifically for e-commerce and omnichannel retailers.
Are you ready to transform your marketing strategy? Watch an insightful webinar with Ruohonjuuri, tailored specifically for e-commerce and omnichannel retailers.
User guides
You can create or add templates by going to acme.custobar.com/settings/templates/ and clicking "Add New Template".
You can now start entering more details and edit the HTML
When you start using templates, one possibility is to use responsive best-practice email template and build your visual email based on it. We have tested and use this one (the Responsive Template):
http://tedgoas.github.io/Cerberus/
If you are not using inline styles, make sure that this check box is not active. You should also include some Custobar specific tags to the message templates:
- Subject: {{ subject }}
- "If your message is not clear click this link": a href="--weblink--"
- Link to unsubscribe: href="--unsubscribe_link--"
Additional tags, which can be used in emails:
- Customers first name: --First name--
- Customers last name: --Last name--
- Discount code: --Code--
These tags can be used both in the message body as well as in the subject field.
Product data in emails:
- in the very top of the template insert this line: {% load tags %}
- Inside the table where the products will appear enter the following lines:
{% if products %} {% for list in products %} {% with list.0.fi as p %} {% if forloop.counter0|divisibleby:2 %}
- replace the product data with following tags:
Image:
<a href="{{ p.url }}"><img src="{{ p.image }}" alt="{{ p.brand }} {{ p.title }}" height="xx" width="yy" </a>
Product brand and title with a link:
<a href="{{ p.url }}">{{ p.brand }}<br>{{ p.title }}</a></h3>
Price: {% format_price p.price separator="," currency="€" %}
Price formatting: {% format_price p.price separator="," currency="€" %}
- In the end of the table:
{% endwith %} {% endfor %}