Changeset 878

Show
Ignore:
Timestamp:
07/10/08 09:41:09 (2 months ago)
Author:
areski
Message:

more mail tracking on payment transaction

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/customer/checkout_process.php

    r715 r878  
    154154        $messagetext = str_replace('$paymentgateway', $transaction_data[0][4], $messagetext); 
    155155        $messagetext = str_replace('$amount', $amount_paid.$currCurrency, $messagetext); 
     156        // Add Post information / useful to track down payment transaction without having to log 
     157        $messagetext .= "\n\n\n\n"."-POST Var \n".print_r($_POST, true); 
    156158         
    157159        // USE PHPMAILER 
     
    351353                $messagetext = str_replace('$paymentMethod', $pmodule, $messagetext); 
    352354                $messagetext = str_replace('$paymentStatus', $statusmessage, $messagetext); 
     355                // Add Post information / useful to track down payment transaction without having to log 
     356                $messagetext .= "\n\n\n\n"."-POST Var \n".print_r($_POST, true); 
    353357                 
    354358                a2b_mail (ADMIN_EMAIL, $subject, $messagetext, $from, $fromname); 
     
    378382write_log(LOGFILE_EPAYMENT, basename(__FILE__).' line:'.__LINE__."-transactionID=$transactionID"." EPAYMENT ORDER STATUS ID = ".$orderStatus." ".$statusmessage); 
    379383write_log(LOGFILE_EPAYMENT, basename(__FILE__).' line:'.__LINE__."-transactionID=$transactionID"." ----EPAYMENT TRANSACTION END----"); 
     384 
     385 


Google