How to show order attributes in order confirmation email - YagiSoftware/DraftHelper GitHub Wiki

Paste this snippet in the Order Confirmation email template

<tr>
  <td>
    {% unless attributes == empty %}
      <ul style="list-style-type: none; padding: 0;">
      {% for attribute in attributes %}
        <li><span class="order-list__item-variant">{{ attribute.first }}: {{ attribute.last }}</span></li>
      {% endfor %}
      </ul>
    {% endunless %}
  </td>
</tr>

Paste in this location location to paste

⚠️ **GitHub.com Fallback** ⚠️