<?php

$paypal_sandbox = 0;  // 1 for test more, 0 for production mode
$expire_in_hours = 72;  // how many hours before download expires, in hours
$paypal_email_address = 'paloque.jack@gmail.com';  // your paypal email address
$support_email_address = 'paloque.jack@gmail.com';   // your email address for support
$support_email_name = 'Support Boutique.reseauk.info';   // name to appear in the From when email is sent

$get_shipping_address = 1;   // whether to get or not shipping address
                             // 1 - Yes, MUST enter shipping address
                             // 0 - No, shipping address field removed
                             // 2 - Optional, shipping address is optional

$product_name = 'Produit de test Boutique.reseauk.info';   // Product name, will appear in Paypal
$product_code = 'SPL101demo';   // Code, will appear in Paypal
$product_price = '00.01';   // product price, will appear in Paypal
$price_currency = 'EUR';    // currency, Paypal only supports
                            // AUD CAD EUR GBP JPY USD NZD CHF HKD
                            // SGD SEK DKK PLN NOK HUF CZK ILS MXN
 
$product_files = array(); // do not change

$product_files[] = array( // DEFINE YOUR PRODUCT
		'name'     => 'musique demo sample.mp3', // normal name of the file
		'filename' => 'sample.mp3', // filename the customer will gets
		'source'   => '/paypal-b/sample.mp3'        // actual location of the file
                                                  // does not need to be the same filename
                                                  // location can elsewhere too like:
                                                  // 'source'   => 'sample.mp3'
	);


$email_subject = 'Votre Achat sur Boutique.reseauk.info : {PRODUCT NAME}'; // subject line for your email

// email body. you cannot have anything, even blank spaces after EOT


//Télécharger {NOM DU PRODUIT} ({CODE DU PRODUIT})
//{Page de téléchargement}
$email_body = <<<EOT
Cher {CUSTOMER NAME},

Merci pour votre achat de {PRODUCT NAME}.

Ci-dessous le lien de votre page de téléchargement. 
Vous avez environ {X} heures pour télécharger votre achat, 
dans lequel après cette période la page de téléchargement 
sera expiré.

Télécharger {PRODUCT NAME} ({PRODUCT CODE})
{Page de téléchargement}

Je reste à votre disposition

Votre nom
Votre entreprise

EOT;

// ALL DONE!!
?>