Dear {{ $order->shipping_first_name }} {{ $order->shipping_last_name }},
We have received your order and it is now being processed. Your order details are shown below for your reference:
Order Information
Order Number: {{ $order->external_order_id }}
Order Date: {{ $order->date_placed ? $order->date_placed->format('F j, Y g:i A') : 'N/A' }}
Order Total: ${{ number_format($order->order_total, 2) }}
Order Items
| Product | SKU | Quantity | Price |
|---|---|---|---|
| {{ $item->name }} | {{ $item->part_num }} | {{ $item->qty }} | ${{ number_format($item->sale_price, 2) }} |
Shipping Address
{{ $order->shipping_first_name }} {{ $order->shipping_last_name }}
@if($order->shipping_company)
{{ $order->shipping_company }}
@endif
{{ $order->shipping_street_address }}
{{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_zip }}
{{ $order->shipping_country }}
Billing Address
{{ $order->billing_first_name }} {{ $order->billing_last_name }}
@if($order->billing_company)
{{ $order->billing_company }}
@endif
{{ $order->billing_street_address }}
{{ $order->billing_city }}, {{ $order->billing_state }} {{ $order->billing_zip }}
{{ $order->billing_country }}
You will receive a shipment confirmation email with tracking information once your order has been shipped.
If you have any questions about your order, please contact our customer service team.