Index: includes/phpmailer.drupal.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/phpmailer/includes/phpmailer.drupal.inc,v
retrieving revision 1.11.2.2
diff -u -p -r1.11.2.2 phpmailer.drupal.inc
--- includes/phpmailer.drupal.inc	17 Jan 2010 18:04:30 -0000	1.11.2.2
+++ includes/phpmailer.drupal.inc	30 Sep 2010 14:56:05 -0000
@@ -37,13 +37,13 @@ function phpmailer_send($message) {
         $mail->AddAddress($address['mail'], $address['name']);
       }
       // Extract CCs and BCCs from headers.
-      if (isset($message['headers']['CC'])) {
-        foreach (phpmailer_parse_address($message['headers']['CC']) as $address) {
+      if (isset($message['headers']['Cc'])) {
+        foreach (phpmailer_parse_address($message['headers']['Cc']) as $address) {
           $mail->AddCC($address['mail'], $address['name']);
         }
       }
-      if (isset($message['headers']['BCC'])) {
-        foreach (phpmailer_parse_address($message['headers']['BCC']) as $address) {
+      if (isset($message['headers']['Bcc'])) {
+        foreach (phpmailer_parse_address($message['headers']['Bcc']) as $address) {
           $mail->AddBCC($address['mail'], $address['name']);
         }
       }
@@ -52,7 +52,7 @@ function phpmailer_send($message) {
       // Reroute to debug e-mail address.
       $mail->AddAddress(variable_get('phpmailer_debug_email', ''));
     }
-    unset($message['headers']['CC'], $message['headers']['BCC']);
+    unset($message['headers']['Cc'], $message['headers']['Bcc']);
 
     // Extract Reply-To from headers.
     if (isset($message['headers']['Reply-To'])) {
Index: includes/phpmailer.mimemail.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/phpmailer/includes/phpmailer.mimemail.inc,v
retrieving revision 1.8.2.3
diff -u -p -r1.8.2.3 phpmailer.mimemail.inc
--- includes/phpmailer.mimemail.inc	17 Jan 2010 18:04:30 -0000	1.8.2.3
+++ includes/phpmailer.mimemail.inc	30 Sep 2010 14:56:05 -0000
@@ -41,13 +41,13 @@ function mimemail_phpmailer_send($messag
         $mail->AddAddress($address['mail']);
       }
       // Extract CCs and BCCs from headers.
-      if (isset($message['headers']['CC'])) {
-        foreach (phpmailer_parse_address($message['headers']['CC']) as $address) {
+      if (isset($message['headers']['Cc'])) {
+        foreach (phpmailer_parse_address($message['headers']['Cc']) as $address) {
           $mail->AddCC($address['mail']);
         }
       }
-      if (isset($message['headers']['BCC'])) {
-        foreach (phpmailer_parse_address($message['headers']['BCC']) as $address) {
+      if (isset($message['headers']['Bcc'])) {
+        foreach (phpmailer_parse_address($message['headers']['Bcc']) as $address) {
           $mail->AddBCC($address['mail']);
         }
       }
@@ -57,7 +57,7 @@ function mimemail_phpmailer_send($messag
       $message['address'] = variable_get('phpmailer_debug_email', '');
       $mail->AddAddress($message['address']);
     }
-    unset($message['headers']['CC'], $message['headers']['BCC']);
+    unset($message['headers']['Cc'], $message['headers']['Bcc']);
 
     $message['headers']['Date'] = $mail->RFCDate();
 
