问题
I'm looking for a way to automatically send money from my PayPal account, to other PayPal accounts; via PHP. Is this possible?
Something like:
$recievers = array("client1@email.com" , "client2@email.com"); $myAccount = "me@email.com"; $myPassword = "letmein"; $amountToPay = 20.0; // $20 USD foreach($recievers as $payee) sendMoney($myAccount, $myPassword, $payee, $amountToPay); //Is this possible?
回答1:
Yes this is possible.
You might want to look into Paypal's Mass Payment API.
来源:https://stackoverflow.com/questions/5372060/automated-paypal-payments