I'm looking for a reference for adding new fields to the Order Creation Notification Email sent when an order is created. I know PHP and I see where I should be adding the code, but I don't see any reference material for what the names of the data elements are for additional things: like Product Description for example or Shipping Description.
For example:
if(bccomp($data->order_shipping_price,0,5)){
echo JText::_('HIKASHOP_SHIPPING_METHOD').' : '.$currencyHelper->format($data->order_shipping_price,$data->order_currency_id)."\n";
}
..ok, this is the closest thing related to Shipping...
I'm using the Manual Shipping Plugin and I want to add the chosen Shipping Option's DESCRIPTION to the email...
it would be something like:
$data->?????
but I don't know what all the names for these additional items that aren't in there already.
Please help or point me to a reference where all these data elements are listed. Thanks,
-JJ