Your Order Has Been Shipped!

Order #{{ $order->external_order_id }}

Dear {{ $order->shipping_first_name }} {{ $order->shipping_last_name }},

Great news! Your order has been shipped and is on its way to you.

📦 Tracking Information

@if(isset($trackingNumbers) && count($trackingNumbers) > 0) @foreach($trackingNumbers as $tracking)

Tracking Number: {{ $tracking }}

@php // Determine carrier based on tracking number format $trackingUrl = ''; if (preg_match('/^1Z/i', $tracking)) { $trackingUrl = 'https://www.ups.com/track?tracknum=' . $tracking; $carrier = 'UPS'; } elseif (preg_match('/^(94|92|93|95|96|420)/i', $tracking)) { $trackingUrl = 'https://tools.usps.com/go/TrackConfirmAction?tLabels=' . $tracking; $carrier = 'USPS'; } elseif (preg_match('/^(61|62|64|65|67|68|69|70|71|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99)/i', $tracking)) { $trackingUrl = 'https://www.fedex.com/fedextrack/?trknbr=' . $tracking; $carrier = 'FedEx'; } else { $carrier = 'Carrier'; } @endphp @if($trackingUrl)

Track your package: Click here to track with {{ $carrier }}

@endif @endforeach @else

Tracking information will be available soon.

@endif

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 }}

What's Next?

Thank you for your order! We hope you enjoy your purchase.