$hdrs = array(
"From" => "[EMAIL PROTECTED]", "Cc" => "[EMAIL PROTECTED]"
"Subject" => "Tests"
);
In your $hdrs array, you're missing a comma separating Cc from Subject. That's probably causing the problem. It should be:
$hdrs = array( "From" => "[EMAIL PROTECTED]", "Cc" => "[EMAIL PROTECTED]", "Subject" => "Tests" );
-- Ben Ramsey Zend Certified Engineer http://benramsey.com
--------------------------------------------------- Atlanta PHP - http://www.atlphp.org/ The Southeast's premier PHP community. ---------------------------------------------------
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php