Automated PayPal payments
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, $amoun开发者_运维技巧tToPay); //Is this possible?
Yes this is possible.
You might want to look into Paypal's Mass Payment API.
精彩评论