From 00d3e7693071daa34730a9a2a8a72f7c2b3199aa Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Tue, 22 May 2001 14:36:41 +0000 Subject: [PATCH] changed cc and bcc back the correct case (oops) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48150 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/mail.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/mail.xml b/functions/mail.xml index 5c7b127124..aed1a425f2 100644 --- a/functions/mail.xml +++ b/functions/mail.xml @@ -127,8 +127,8 @@ $headers .= "Return-Path: <birthday@php.net>\n"; // Return path for errors /* 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@php.net\n"; // CC to -$headers .= "Bcc: birthdaycheck@php.net, birthdaygifts@php.net\n"; // BCCs to +$headers .= "cc: birthdayarchive@php.net\n"; // CC to +$headers .= "bcc: birthdaycheck@php.net, birthdaygifts@php.net\n"; // BCCs to /* and now mail it */ mail($recipient, $subject, $message, $headers);