Post-Purchase Email Snippet

Edited

These instructions are specific to reimbursement implementations. They are not necessary to support the Truemed payment app.

Encourage HSA / FSA reimbursement immediately post-purchase

These instructions will help you include a link to the HSA / FSA reimbursement qualification in the post-purchase email.

For example, an email might look like this:

Shopify Instructions

  1. Locate your Qualification Link at app.truemed.com

This is the link that you will copy for the following steps. Make sure to replace “YOUR_QUALIFICATION_LINK” with the link found in step 1.

  1. On your Shopify admin panel, navigate to Settings → Notifications → Customer Notifications → Order Confirmations → Click edit code → Paste the following code snippet according to where you'd like it to appear in your email template:

{% assign skus = "" %}
{% for line_item in order.line_items %}
  {% assign skus = skus | append: line_item.sku %}
  {% unless forloop.last %}
    {% assign skus = skus | append: "," %}
  {% endunless %}
{% endfor %}

<p>This order might be eligible for HSA/FSA reimbursement.<a href="YOUR_QUALIFICATION_LINK?source=receipt_email_1&skus={{ skus | url_encode }}"> Qualify Here</a></p><br>

On the standard Shopify template it could look something like this:

You can click Preview to see what the page will look like before saving it. Note: the hyperlinked text will not be clickable in the preview mode.

Non-Shopify Instructions

  1. Locate your Qualification Link at app.truemed.com

This is the link that you will copy for the following steps. Make sure to replace “YOUR_QUALIFICATION_LINK” with the link found in step 1.

  1. Place the following code snippet in your post-purchase email template. Customers have a better experience if you append SKUs to your qualification link according to this guide.

<p>This order might be eligible for HSA/FSA reimbursement. <a href="YOUR_QUALIFICATION_LINK?source=receipt_email_1">Qualify here</a>.</p><br>