开发者

Automated PayPal payments

开发者 https://www.devze.com 2023-02-17 20:25 出处:网络
I\'m looking for a way to automatically send money from my PayPal account, to other PayPal accounts; via PHP. Is this possible?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消