Ship 8 Inc handles all our needs for our customers.

They are flexible, they learn and work with the customers’ software as
requested and interact with the customer when needed to make shipments as
seamless as possible.

Our shipments go out on a timely manner and if special request arise, they are
always helpful and willing to go above and beyond to meet the needs.

Our line of business is retail and if the product doesn’t get shipped, customers
do not have product, so it is imperative to have the product shipped as
requested by the customer and Ship 8 Inc. always meets that need.

Request Fulfillment Quote

jQuery(document).ready(function ($) { $(document).on('submit', '#J_request_pricing_form', function (event) { event.preventDefault(); var values = $(this).serializeArray(); var params = { type: 1, email: '', first_Name: '', last_Name: '', phone: '', companyName: '', companyWebsite: '', platform: '', shipmentsPerMinth: '', message: '', service: '', }; var servicesArr = []; values.forEach(function (item) { if (item.name === 'firstName') params.first_Name = item.value; if (item.name === 'lastName') params.last_Name = item.value; if (item.name === 'phone') params.phone = item.value; if (item.name === 'email') params.email = item.value; if (item.name === 'companyName') params.companyName = item.value; if (item.name === 'companyWebsite') params.companyWebsite = item.value; if (item.name === 'ecommercePlatform') params.platform = item.value; if (item.name === 'shipmentsMonth') params.shipmentsPerMinth = item.value; if (item.name === 'other') params.message = item.value; if (item.name === 'services[]') servicesArr.push(item.value); }); params.service = servicesArr.join(','); $.ajax({ type: 'POST', url: `${window.Win_ApiUrl}api/app/business/insertUserInquiry`, contentType: 'application/json', dataType: 'json', data: JSON.stringify(params), success: function (result) { if (result) { layer.alert( 'Success.', { icon: 1, title: 'Tips', btn: ['Ok'], skin: 'layer__ship8', }, function () { $('#J_request_pricing_form')[0].reset(); layer.closeAll(); } ); } }, error: function (e) { if (e.responseText) { layer.alert(e.responseText, { icon: 2, title: 'Tips', btn: ['Ok'], skin: 'layer__ship8', }); } console.log(e.status); console.log(e.responseText); }, }); }); });