Skip to content

How to add a Convermax vehicle to an order email

Here is how to make a customer’s vehicle appear in the order details email.

How to configure

  • Go to SettingsNotificationsStaff notifications in the Shopify admin.

  • Click New order.

  • Click Edit code.

  • Add the following code to the code editor at the bottom. For example, place it after the Shipping address block.

    {%- if attributes.Vehicle -%}
    <table class="row">
    <tr>
    <td class="customer-info__item customer-info__item--last">
    <strong>Vehicle</strong>
    <br />
    <p>{{ attributes.Vehicle }}</p>
    </td>
    </tr>
    </table>
    {%- endif -%}

  • Click Save.