B2B Order Shipped

Business Partner Shipment Notification

Dear Business Partner,

Your B2B order #{{ $order->external_order_id }} has been shipped.

📦 Shipment Tracking Information

@if(isset($trackingNumbers) && count($trackingNumbers) > 0) @foreach($trackingNumbers as $tracking)
{{ $tracking }}
@php // Determine carrier and tracking URL $trackingUrl = ''; $carrier = ''; 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'; } elseif (preg_match('/^(86|87)/i', $tracking)) { $carrier = 'GSO'; $trackingUrl = 'https://www.gso.com/Tracking/PackageDetail?TrackingNumber=' . $tracking; } else { $carrier = 'Carrier'; } @endphp @if($trackingUrl)

Track with {{ $carrier }} →

@endif @endforeach @else

Tracking information is being generated and will be available shortly.

@endif

âš¡ B2B Shipping Benefits

Shipment Details

Order Number: {{ $order->external_order_id }}

@if($order->po_number)

PO Number: {{ $order->po_number }}

@endif

Ship Date: {{ now()->format('F j, Y') }}

Estimated Delivery: 2-5 business days (depending on service selected)

Delivery Address

@if($order->shipping_company) {{ $order->shipping_company }}
@endif {{ $order->shipping_first_name }} {{ $order->shipping_last_name }}
{{ $order->shipping_street_address }}
{{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_zip }}
{{ $order->shipping_country }}

Important Information

For any questions or special delivery requirements, please contact your dedicated B2B account manager or our business support team.

Reference order number {{ $order->external_order_id }} in all communications.