Hey everyone,
I am currently editing my custom fulfillment request notification email to include all the information my fulfilled needs. I am at the home stretch until I got to where I have to add the “Cost per item” aka. my cost, unit cost, etc. I have searched these forums and Google without any luck! Below is the current code that I am using. The row for DropShip price is where I am having issues. Does anyone know the correct liquid variable code to insert here to display the cost per item? Thanks in advance.
Hello {{ service_name }},
Please fulfill PO {{ name }}.
Date: {{ date: format: 'default' }}
Total number of items: {{ fulfillment.item_count }}
Shipping Carrier Service: UPS Ground
Shipping Account: 014F09
**Items to fulfill:**
{% for line in fulfillment.fulfillment_line_items %}
Variant Title: {{ line.line_item.title }}
SKU: {{ line.line_item.sku }}
Quantity: {{ line.quantity }}
Dropship Price: $ {{ line_item.price | money }}
{% endfor %}
{% if shipping_address %}
**Shipping Address:**
{{ shipping_address.name }}{% if shipping_address.company %}
{{ shipping_address.company }}{% endif %}
{{ shipping_address.address1 }}
{{ shipping_address.address2 }}
{{ shipping_address.city }}, {{ shipping_address.province }}
{{ shipping_address.zip }}
{{ shipping_address.country }}
{% if shipping_address.phone %}
Phone: {{ shipping_address.phone }}
{% endif %}
{% endif %}
**Shipping Method:**
{% if shipping_method %}{{ shipping_method.title }}{% else %}None{% endif %}
**Tracking Number:**
{% if fulfillment.tracking_number %}{{ fulfillment.tracking_number }}{% else %}None{% endif %}
Please confirm receipt of the order.
Thank you,
{{ shop_name }}
{{ shop.email }}