From 890122a2d703309dc35402abbc930fb2efb83134 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Mon, 21 May 2001 02:59:47 +0000 Subject: [PATCH] corrected part of doc bug #9859 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48024 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 4266f22c48..a7bc49ba0d 100644 --- a/functions/mail.xml +++ b/functions/mail.xml @@ -118,8 +118,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);