Include links to invoices in POS receipt email

You can append a link to an invoice in the POS receipt email sent by Shopify. POS and mobile receipt email is sent to the customer after they complete an in-person order and want to be emailed a receipt.

The online version of the invoice

You add a link to an online version of the invoice that will redirect your customers to preview their invoice online with the possibility to download it or print it. What is more, your customers will be able to pay their unpaid invoices online with their credit card.

Online invoices in Sufio

The online version of an invoice

To add an online invoice version link to the POS receipt email template:

  1. In your Shopify admin, go to the Settings → Notifications page.
  2. In the section Customer notifications, click on POS and mobile receipt.
  3. Insert the following code snippet to the Email body (HTML) field.
<div class="invoice-link">
  <a href="{{ shop.url }}/apps/sufio/invoice/?id={{ id }}&number={{ order_number }}">View invoice</a>
</div>

PDF version of the invoice

In case you want your customer to download a PDF version of their invoice directly, use the following code snippet:

<div class="invoice-link">
  <a href="{{ shop.url }}/apps/sufio/invoice/download/?id={{ id }}&number={{ order_number }}">Download invoice</a>
</div>
Please note that the PDF version does not allow the customer to pay their unpaid invoices online with their credit card.