Bueno ya resolvi el problema, el problema era que no tenia un llamado, cadena como se llame
de esto no se mucho jejeje
$mail='
[email protected]';
$mailheader .= "Cc: segundo@quenoeseltuyo\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
como ya tenia un header lo tenia para redireccionar asi que le puse mailheader, luego lo agregue aqui:
if (mail($mail,"apply new user",$message, $mailheader))
Header ("Location: $thank");
Y ahora si funciona llega a los dos correos perfectamente, Como me lo hizo ver C2am me faltaba poner eso.
Asi esta el codigo:
Código PHP:
<?php
$mail='[email protected]';
$mailheader .= "Cc: [email protected],[email protected]\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
$name = $_POST['name'];
$last = $_POST['last'];
$age = $_POST['age'];
$birthday = $_POST['birthday'];
$email = $_POST['email'];
$country = $_POST['country'];
$nick = $_POST['nick'];
$rules = $_POST['rules'];
$message = $_POST['message'];
$thank="http://www.unitspecialswat.com/index.html";
$message = "
name:".$name."
last:".$last."
age:".$age."
birthday:".$birthday."
email: ".$email."
country:".$country."
nick:".$nick."
rules:".$rules."
message:".$message."";
if (mail($mail,"apply new user",$message, $mailheader))
Header ("Location: $thank");
?>
GRacias