[PHP-DOC] cvs: phpdoc /en/functions mail.xml From: Daniel Beckham (danbeck <email protected>)
Date: 05/22/01

danbeck Tue May 22 07:36:42 2001 EDT

  Modified files:
    /phpdoc/en/functions mail.xml
  Log:
  changed cc and bcc back the correct case (oops)
  
Index: phpdoc/en/functions/mail.xml
diff -u phpdoc/en/functions/mail.xml:1.19 phpdoc/en/functions/mail.xml:1.20
--- phpdoc/en/functions/mail.xml:1.19 Mon May 21 19:13:37 2001
+++ phpdoc/en/functions/mail.xml Tue May 22 07:36:41 2001
@@ -127,8 +127,8 @@
 /* If you want to send html mail, uncomment the following line */
 // $headers .= "Content-Type: text/html; charset=iso-8859-1\n"; // Mime type
 
-$headers .= "Cc: birthdayarchive <email protected>\n"; // CC to
-$headers .= "Bcc: birthdaycheck <email protected>, birthdaygifts <email protected>\n"; // BCCs to
+$headers .= "cc: birthdayarchive <email protected>\n"; // CC to
+$headers .= "bcc: birthdaycheck <email protected>, birthdaygifts <email protected>\n"; // BCCs to
 
 /* and now mail it */
 mail($recipient, $subject, $message, $headers);