<%= message %>

Invoice #<%= consignment.invoice %> • Consignment ID: <%= consignment.consignment_id %>

Tracking Number
<%= consignment.tracking_code %>
Order Details
Status
<%= consignment.status.replace('_', ' ') %>
COD Amount
৳ <%= consignment.cod_amount %>
Total Lot
<%= consignment.total_lot %>
<% if (consignment.item_description) { %>
Item Description
<%= consignment.item_description %>
<% } %>
Recipient Information
Name
<%= consignment.recipient_name %>
Phone
<%= consignment.recipient_phone %>
<% if (consignment.alternative_phone) { %>
Alternative Phone
<%= consignment.alternative_phone %>
<% } %> <% if (consignment.recipient_email) { %>
Email
<%= consignment.recipient_email %>
<% } %>
Delivery Address
<%= consignment.recipient_address %>
<% if (consignment.note) { %>
Note
<%= consignment.note %>
<% } %>
Timeline
Created
<%= new Date(consignment.created_at).toLocaleString('en-US', { year: 'numeric', month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' }) %>
Last Updated
<%= new Date(consignment.updated_at).toLocaleString('en-US', { year: 'numeric', month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' }) %>
Create New Order