Receipts set up for different products

can you have multiple receipts set up to go out for different products with in your shop ?

Hi @PrintSisters ,

Shopify does not have a built-in feature to send different receipts for different products. However, you can achieve this using Shopify apps or custom Shopify Flow automation (for Shopify Plus users).

Options to Set Up Multiple Receipts#### 1. Use Shopify Email Customization (Basic Option)- Go to Settings → Notifications → Order Confirmation

  • Add conditional Liquid code to customize receipts based on products purchased

  • Example:

    {% for line_item in order.line_items %}
        {% if line_item.product.title contains 'Special Product' %}
            <p>Thank you for purchasing {{ line_item.product.title }}! Here are special instructions.</p>
        {% endif %}
    {% endfor %}
    

Limitations: Can’t send separate emails, only modifies the main order confirmation.


2. Use Shopify Flow (For Shopify Plus)- Create an automation:

Trigger: Order Created
Condition: If order contains “Product X”
Action: Send specific email

Only available for Shopify Plus.


3. Use a Third-Party App (Best Option)

Apps like:
OrderlyEmails (customize order confirmations per product)
Shopify Email (automated personalized emails)
Klaviyo (advanced email automation for different product types)


Best Option for You?- Basic Shopify → Use Liquid in email templates

  • Shopify Plus → Use Shopify Flow
  • Flexible & Easy → Use an app like OrderlyEmails or Klaviyo

Really helpful explanation of how Shopify handles receipt customization. The Liquid example makes it much easier to understand