- Impact
- 11
How can i make it so i can send a file to the paypal email after I recieve a payment from them?
killaklown said:How can i make it so i can send a file to the paypal email after I recieve a payment from them?
Ms Grace said:I guess you could make it work with Paypal IPN.
Just let the script send the file to the email address, when you recieve a 'VERIFIED' status from paypal....
Process PayPal payments and subscription purchases automatically then let CFPurchasePickup immediately deliver your ebooks, software, mp3's, fonts, calling cards and other digital goods totally unattended.
CFPurchase Pickup 2.4 Just Released!
CFPurchase Pickup is an automatic product delivery system designed to deliver your e-products immediately after purchase. CFPP also provides a pickup depot for your products.
Do you sell e-books on EBay? If So, Read This!
CFPP can handle all your deliveries for you! Sell eBooks, software or other digital products 24 hours a day and deliver digital products instantly after purchase automatically, just like the pros!
CF Purchase Pickup is designed for anyone who sells intangible goods online using PayPal with your existing shopping cart. This includes downloadable items such as: software, eBooks, music, movies, digital art, manuals, articles, certificates, forms, files, and anything else that can be downloaded.
If you sell intangible goods online and you're looking for a way to automatically deliver digital products, then CFPurchase Pickup with its automatic payment processing and auto delivery is for you!
You do not need to have any programming experience!. If you have any problems setting up CFPurchase Pickup, our technicians will help you install it for free. CFPurchase Pickup uses the latest ColdFusion technology and will run on ColdFusion 5+.
If you do not have a web hosting company that supports ColdFusion, thatโs not a problem!
We have partnered with MyCFHost.com to provide you the best hosting experience possible. MyCFHost.com has many hosting plans to best suit your needs and fully supports ColdFusion and CFPurchase Pickup.
Why pay someone else to deliver digital products when you can do it yourself automatically!
$email = "recievers email";
$senderemail = "Your own email";
$subject = "Your files name or subject of the email";
$message = "Text here";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: $name <$email>' . "\r\n";
$headers .= 'From: Sender <$senderemail>' . "\r\n";
mail($email, $subject, $message, $headers);

