Order shipped email template
We use this template for the email informing customers their order has been shipped. You can send this email via a completed order's details in your dashboard.
Note that this email is used when you decide to send a shipping notification to your customer without sending the tracking number & details.
The written message you input in this template will be the one customers see upon receiving order shipping confirmation.
The template receives:
| Variable | Type | Notes |
|---|---|---|
context |
string | Email, Pdf or Html. |
settings |
object | Store settings — see Settings. |
order |
Order | The shipped order. |
What you can access
| Path | Type |
|---|---|
order |
Order |
order.shippingInformation |
ShippingInformation |
order.items[] |
Item |
order.billingAddress |
Address |
order.shippingAddress |
Address |
order.summary |
Summary |
order.summary.taxes[] |
Tax |
order.discounts[] |
Discount |
order.customFields[] |
CustomField |
order.refunds[] |
Refund |
Minimal example
{
"context": "Email",
"settings": { "businessAddress": { "company": "snipcart.com" } },
"order": {
"invoiceNumber": "SNIP-1001",
"email": "john.doe@example.com",
"shippingInformation": { "method": "Standard shipping" },
"items": [{ "name": "Geek T-Shirt", "quantity": 2, "totalPrice": 100 }]
}
}