Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Guindon2017-09-19 13:48:00 +0000
committerChristopher Guindon2017-09-19 13:48:48 +0000
commit940d5e375438c1e8cb009c9872654b5ecc658bcc (patch)
treef487fa801cb25035a457fe0e92717d01d7d17bdc
parenta7cc869c8121aa21c149d366e5d2cba0a2d0d2e9 (diff)
downloadeclipse.org-common-940d5e375438c1e8cb009c9872654b5ecc658bcc.tar.gz
eclipse.org-common-940d5e375438c1e8cb009c9872654b5ecc658bcc.tar.xz
eclipse.org-common-940d5e375438c1e8cb009c9872654b5ecc658bcc.zip
Bug 2552 - Stop PayPal/BitPay confirmation emails
Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
-rw-r--r--classes/friends/donationEmails.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/friends/donationEmails.class.php b/classes/friends/donationEmails.class.php
index 9f1ddb11..9235d8df 100644
--- a/classes/friends/donationEmails.class.php
+++ b/classes/friends/donationEmails.class.php
@@ -100,7 +100,7 @@ class DonationEmails {
if ($Donation->table_prefix == 'testing_') {
$this->_set_test_mode(TRUE);
}
- $this->_set_email_headers('From: Eclipse Webmaster (automated) <webmaster@eclipse.org>'. PHP_EOL .'Bcc: donate@eclipse.org'. PHP_EOL .'Content-Type: text/plain; charset=UTF-8');
+ $this->_set_email_headers('From: Eclipse Webmaster (automated) <webmaster@eclipse.org>'. PHP_EOL .'Content-Type: text/plain; charset=UTF-8');
$this->_set_email_foe_logo_link('https://dev.eclipse.org/site_login/myaccount.php');
$this->_set_email_code('ECLIPSECON', 'FRIEND');
$this->_set_email_code('OREILLY', 'PCBW');

Back to the top