-
Notifications
You must be signed in to change notification settings - Fork 17
/
config.php
29 lines (19 loc) · 1019 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 array(
// Enable test mode (not require HTTPS)
'test-mode' => true,
// Secret Key from Stripe.com Dashboard
'secret-key' => 'YOUR_SECRET_KEY',
// Publishable Key from Stripe.com Dashboard
'publishable-key' => 'YOUR_PUBLISHABLE_KEY',
// Where to send upon successful donation (must include http://)
'thank-you' => 'http://domain.com/thank-you.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' => 'Thank you for your donation!',
// Email message. %name% is the donor's name. %amount% is the donation amount
'email-message' => "Dear %name%,\n\nThank you for your donation of %amount%. We rely on the financial support from people like you to keep our cause alive. Below is your donation receipt to keep for your records."
);