Jesse
Jesse

Reputation: 599

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("[email protected]" , "[email protected]");

$myAccount = "[email protected]";
$myPassword = "letmein";
$amountToPay = 20.0; // $20 USD

foreach($recievers as $payee)
    sendMoney($myAccount, $myPassword, $payee, $amountToPay); //Is this possible?

Upvotes: 7

Views: 3524

Answers (1)

Abs
Abs

Reputation: 57926

Yes this is possible.

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

Upvotes: 3

Related Questions