Index: includes/phpmailer.drupal.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/phpmailer/includes/phpmailer.drupal.inc,v
retrieving revision 1.9.2.3
diff -u -p -r1.9.2.3 phpmailer.drupal.inc
--- includes/phpmailer.drupal.inc	17 Jan 2010 18:04:49 -0000	1.9.2.3
+++ includes/phpmailer.drupal.inc	30 Sep 2010 14:58:15 -0000
@@ -36,13 +36,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']);
         }
       }
@@ -51,7 +51,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.6.2.4
diff -u -p -r1.6.2.4 phpmailer.mimemail.inc
--- includes/phpmailer.mimemail.inc	17 Jan 2010 18:04:49 -0000	1.6.2.4
+++ includes/phpmailer.mimemail.inc	30 Sep 2010 14:58:15 -0000
@@ -40,13 +40,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']);
         }
       }
@@ -56,7 +56,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();
 
