tengo este formulario al que quisiera agregarle otro destinatario pero quiero que sea oculto, aqui esta el codigo. Sugerencias, opiniones? Muchas gracias.
<?
if (!empty($_POST['nombre']) && !empty($_POST['telefono']) ) {
if ( $_POST['email'] )
$origen = strtr($_POST['email'],"\r\n\t",'???');
else
$origen = '[email protected]';
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From: [email protected]";
$asunto = "INFORMACIÓN";
$mensaje = "<html><head></head><body>";
$mensaje .= "Información<br><br>";
$mensaje .= "Nombre: ".$_POST['nombre']."<br>";
$mensaje .= "Teléfono: ".$_POST['telefono']."<br>";
$mensaje .= "E-Mail: ".$origen."<br>";
$mensaje .= "</body></html>";
mail(" [email protected]", $asunto, $mensaje, $headers);
?>