Código PHP:
$asunto = "Contacto via Web - Neworks";
$mensaje = '
<html>
<head>
<title>:: Contacto via Web - Neworks</title>
</head>
<body>
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">El siguiente mensaje fue enviado el dia '.$_POST["fecha"].' con los siguientes datos:<br>
<br>
<strong>Nombre: </strong>'.$_POST["nombre"].'<br>
<strong>Edad:</strong> '.$_POST["edad"].'<br>
<strong>Actividad:</strong> '.$_POST["actividad"].'<br>
<strong>E-Mail:</strong> '.$_POST["email"].'<br>
<strong>Telefono:</strong> '.$_POST["telefono"].'<br>
<strong>Celular:</strong> '.$_POST["celular"].'<br>
<strong>Solicitud:</strong> '.$_POST["solicitud"].'<br>
<strong>Descripcion:</strong><br>
'.nl2br($_POST["descripcion"]).'<br>
<strong>Comentarios:</strong><br>
'.nl2br($_POST["comentarios"]).'</font><br><br>
</body>
</html>';
$para = "[email protected]" . ", " ; // fijese en la comma
$para .= "[email protected]" . ", ";
$para .= "[email protected]";
/* Para enviar correo HTML, puede definir la cabecera Content-type. */
$cabeceras = "MIME-Version: 1.0\r\n";
$cabeceras .= "Content-type: text/html; charset=iso-8859-1\r\n";
/* cabeceras adicionales */
$cabeceras .= "From: ".$_POST["nombre"]." <".$_POST["email"].">\r\n";
/* y ahora, enviarlo */
mail($para, $asunto, $mensaje, $cabeceras);
?>
<div align="center">
<table width="100%" height="100%" align="center">
<tr>
<td valign="top"><div align="center">
<font face="Geneva, Arial, Helvetica, sans-serif">
<em><font size="2"><br />
Su mensaje fue enviado satisfactoriamente. Esperamos responderlo a la brevedad.</font></em></font></div></td>
</tr>
</table>
</div>
Gracias