forked from iM0hamed/Checker-Stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
29 lines (19 loc) · 826 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
return $config = Array(
// Enable test mode (not require HTTPS)
'test-mode' => true,
// Secret Key from Stripe.com Dashboard
'secret-key' => 'sk_live_SUA KEY',
// Publishable Key from Stripe.com Dashboard
'publishable-key' => 'pk_live_SUA KEY',
// Where to send upon successful donation (must include http://)
'thank-you' => ' thankyou.html',
// Who the email will be from.
'email-from' => '[email protected]',
// Who should be BCC'd on this email. Probably an administrative email.
'email-bcc' => '[email protected]',
// Subject of email receipt
'email-subject' => 'Obrigado por Doar!!',
// Email message. %name% is the donor's name. %amount% is the donation amount
'email-message' => "Oi seu bosta %name%,\n\nObrigado por doar %amount% moneys. Agora você se fodeo."
);