Ubercart is sending customers invoice email but it does not seem to be parsing the template tokens correctly?
Specifically it's not converting !order_first_name (or !order_last_name).
In uc_order/uc_order-customer.tpl.php there is this line:
<p><b><?php echo t('Thanks for your order, !order_first_name!', array('!order_first_name' => $order_first_name)); ?></b></p>However when the mails are sent they don't have any first names, only this:
Thanks for your order, !I'm wondering if the new templating system as anything to do with it? Does anyone have any suggestions on how I might fix this?
