phpPayPal icon indicating copy to clipboard operation
phpPayPal copied to clipboard

Forked drewjoh / phpPayPal added MassPay support

Open uWebTech opened this issue 13 years ago • 0 comments

Added MassPay to this excellent class. Example use: $paypal['api_username'] = 'username'; $paypal['api_password'] = 'password'; $paypal['api_signature'] = 'API'; // Initiate $payment = new phpPayPal($paypal, true); // Server (Required) $payment->ip_address = $_SERVER['REMOTE_ADDR']; $payment->add_mass_pay('[email protected]', '5.00','uniqueid','a note for you and client'); $payment->add_mass_pay('[email protected]', '5.00'); $payment->mass_pay(); if($payment->_error){ echo 'Error:
'; $payment->_error_long_message; } else { echo 'Success'; }

uWebTech avatar Dec 17 '12 19:12 uWebTech