> I have a mail script that works fine except that it does not send to the
CC
> in my header options... nor will it send to multiple addresses can some
one
> please give me some advice on this... I've looked in the php manual as
well
> as other web pages  but neither have an answer for me.
>
> $headers .= "cc:[EMAIL PROTECTED],[EMAIL PROTECTED]\n"; // CC
to
> $mailsend = mail("$address", "$subject", "$body.", "$headers
\nContent-Type:
> text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit" );
> print ("$mailsend");

Is there supposed to be a "dot" after body?
Whats the result in $mailsend? have you tried with just the cc's and no
X-header info?
Have you tried just these two:

$headers = "mailto:cc:[EMAIL PROTECTED], [EMAIL PROTECTED] \n;
$mailsend = mail("$address", "$subject", "$body", "$headers " );



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to