Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stoll/cd65d7f16a26e04fe964 to your computer and use it in GitHub Desktop.
Save stoll/cd65d7f16a26e04fe964 to your computer and use it in GitHub Desktop.
Shopify: Gift Card Notification in HTML (Danish)
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk -->
<div style="font-family:Sans-Serif;font-size:12px;width:100%;margin:5px;">
<p>Hej, {% if gift_card.customer %} {{ gift_card.customer.first_name }}{% endif %}!</p>
<p>Her er dit <a href="{{ shop.url }}">{{ shop.name }}</a> gavekort til en værdi á {{ gift_card.initial_value | money_without_trailing_zeros }}.</p>
{% if gift_card.initial_value != gift_card.balance %}
<p>Du har {{ gift_card.balance | money_without_trailing_zeros }} tilbage på dette gavekort.</p>
{% endif %}
<p><a href="{{ gift_card.url }}">For at se eller printe dit gavekort, klik da her</a></p>
<p>Har du bestilt dette gavekort til en bekendt? Så kan du blot videresende denne e-mail til vedkommende.</p>
<p>Tak fordi du handlede hos <a href="{{ shop.url }}">{{ shop.name }}</a>!</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment