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, $amountToPay); //Is this possible?

Yes this is possible.

You might want to look into Paypal's Mass Payment API.

链接地址: http://www.djcxy.com/p/5760.html

上一篇: 如何使用Native Activity? 它可以与传统活动结合吗?

下一篇: 自动化的PayPal付款