I have a payment form on my site and it is setup to email the user and myself the details after a successful payment but I really need to grab the Transaction Id number that Authorize.net provides after a successful payment was made. Is there any way to get this Trans ID automatically and include it in the emails?
Thanks, Gabe
Hi Gabe,
as per the Help tab. all the authorize.net transaction data are saved under this variable after the clal is made to the gateway:
$form->data['_PLUGINS_']['authorize_net']
The transaction id for example:
$form->data['_PLUGINS_']['authorize_net']['transaction_id']
so in your email:
<?php echo $form->data['_PLUGINS_']['authorize_net']['transaction_id']; ?>
or
{_PLUGINS_.authorize_net.transaction_id}
Regards,
Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
Thank you again Max. You are a very big help to us all.