Hi, I'm trying to use your app to send an email notification with a QR code that redirect to the Order Status Page, I can see that this
<img src="https://select-customer-barcode-prod.herokuapp.com/public-api/v1/qrcodes/{{shop.permanent_domain}}/{{customer.id}}" />
is the code you suggest but if change it for this:
<img src="https://select-customer-barcode-prod.herokuapp.com/public-api/v1/qrcodes/{{order_status_url}}" />
it doesn't work. Is it possible to do something like this?
Hi,
If I understood your question correctly, you would like a QR code to be a link to the order status page.
You would need to wrap a QR code HTML image component with an HTML link component. The code should look like this:
<a href="{{order_status_url}}">
<img src="https://select-customer-barcode-prod.herokuapp.com/public-api/v1/qrcodes/{{shop.permanent_domain}}/{{customer.id}}" />
</a>
Please note that the image would not appear "clickable" in the notifications preview (no links or buttons do, based on my testing), but would work as expected in a real email.