> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.customall.io/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to Add the Production File Link to Your Order Confirmation Email

If you want to include the production file link from Customall in the order confirmation email your customers receive after placing an order, you will need to edit the email template used by Shopify. 

To learn more about customizing Shopify email templates, we recommend reading these official guides:
* [How to Customize Shopify Email Notifications for Clients](https://www.shopify.com/partners/blog/shopify-email-notifications)
* [Edit notification templates](https://help.shopify.com/en/manual/orders/notifications/edit-template)

### Where to Find the Print File URL

Customall stores the production file URL in the line item properties, so you can access it through line item properties in your Shopify template.

The specific property name is:  **`_customall_print_file`**

### Example Code Snippet

Below is an example of how to display the production file link in your Shopify order confirmation email template:

```
{% if line.properties._customall_print_file %}

<span class="order-list__item-variant">

<a href="{{ line.properties._customall_print_file }}" target="_blank">

Download Print File

</a>

</span>

{% endif %}
```

After inserting this code, a clickable link labeled **Download Print File** will appear in your customer's order confirmation email.
 
![](https://storage.crisp.chat/users/helpdesk/website/-/a/8/3/6/a836ece0c4805800/image_1dxp4ms.png)

|| Note: The email confirmation template structure may vary between stores.

Please locate the section in your template where the product item (`line`) is rendered, and add the code in the appropriate place to ensure the production file link appears correctly.