Billing Information
{$item->userData.billing.firstName|htmlspecialchars} {$item->userData.billing.lastName|htmlspecialchars}
{$item->userData.billing.address|htmlspecialchars}
{$item->userData.billing.city|htmlspecialchars}, {$item->userData.billing.state|htmlspecialchars} {$item->userData.billing.zip|htmlspecialchars}
{if $item->userData.billing.email}
{mailto address = $item->userData.billing.email encode = 'javascript'}{/if}
{if $item->userData.billing.phone}
{$item->userData.billing.phone|htmlspecialchars}{/if}
Shipping Information
{if $item->userData.shipping.asBilling == 'y'}
{assign var = 'shippingBlock' value = 'billing'}
{else}
{assign var = 'shippingBlock' value = 'shipping'}
{/if}
{$item->userData.$shippingBlock.firstName|htmlspecialchars} {$item->userData.$shippingBlock.lastName|htmlspecialchars}
{$item->userData.$shippingBlock.address|htmlspecialchars}
{$item->userData.$shippingBlock.city|htmlspecialchars}, {$item->userData.$shippingBlock.state|htmlspecialchars} {$item->userData.$shippingBlock.zip|htmlspecialchars}
Payment Information
Method: {$item->userData.servicePayment.typeTitle|htmlspecialchars}
{if $item->userData.servicePayment.type == 'authorizeNet'}
Card Number: **** **** **** *{$item->userData.servicePayment.authorizeNet.cardNumber|substr:-3}
Expiration Date: {$item->userData.servicePayment.authorizeNet.expirationDate|date_format:'%m-%Y'}
{elseif $item->userData.servicePayment.type == 'linkPoint'}
Card Number: **** **** **** *{$item->userData.servicePayment.linkPoint.cardNumber|substr:-3}
Expiration Date: {$item->userData.servicePayment.linkPoint.expirationDate|date_format:'%m-%Y'}
{elseif $item->userData.servicePayment.type == 'po'}
PO#: {$item->userData.servicePayment.po.poNumber|htmlspecialchars}
{/if}