Estoy mal de la cabeza :S Ahora mismo lo hago.. Gracias
AlnitakEdit: Ya lo hice, sale bien pero cuando le doy a enviar se va a
http://www.tudominio.com.es/ ¿Qué hago?

Ya modifiqué el código y quedaron de esta manera:
CODE
<?php
$eMailA = "****@gmail.com";
$eMailAsunto = "envio de datos desde el formulario";
$eMailExtraHeaders = "From: $eMailA\n";
$mensaje="Estos son los datos introcucidos:\n\n Nombre: $name\n Mensaje: $msg\n Email: $correo";
@mail($eMailA, $eMailAsunto, strip_tags($mensaje),$eMailExtraHeaders);
header("Location: http://www.arwinianos.net/teamdesign/contactar.php");
?>
Y el otro así:
CODE
<?php
echo"<div align=\"center\">"
. "<div style=\"border:1px solid #999999; width:255px; margin-bottom:5px;background-color:#F2F4FA;\">"
. "<form action=\"http://www.arwinianos.net/teamdesign/sendmail.php\" method=\"post\" enctype=\"multipart/form-data\" style=\"margin:0px;\">"
. "<div style=\"background-color:#DBE0F5; padding:3px; font:12px arial; color:black;\"><b>CONTACTO</b></div>"
. "<div style=\"padding:10px; font: normal 12px Arial; text-align:left;color:black;\">TU NOMBRE<br/>"
. "<input type=\"text\" name=\"name\" size=\"34\" style=\"width:230px;\" /><br />"
. "TU MENSAJE<br /><input type=\"textarea\" name=\"msg\" size=\"34\" style=\"width:230px;\" /><br>"
. "TU EMAIL<br /><input type=\"text\" name=\"correo\" size=\"34\" style=\"width:230px;\" /></div>"
. "<div align=\"center\">"
. "<input type=\"submit\" name=\"submit\" value=\" Enviar \">"
. "<input type=\"hidden\" name=\"usernum\" size=\"1\" style=\"border: 0px solid black; height: 0px; width: 0px;\" value=\"3324633321\" /><input type=\"hidden\" style=\"border: 0px solid black; height: 0px; width: 0px;\" name=\"MAX_FILE_SIZE\" value=\"2000000\"><input type=\"hidden\" style=\"border: 0px solid black; height: 0px; width: 0px;\" name=\"cpv\" value=\"2\" />"
. "<input type=\"reset\" name=\"reset\" value=\" Borrar \"></div>"
. "</form>"
. "<div align=\"center\" style=\"margin: 5px;\">"
. "</div>"
. "</div>"
. "</div>"
."";
?>
Y me sale este error:
Warning: Cannot modify header information - headers already sent by (output started at /home/arwinian/public_html/teamdesign/sendmail.php:8) in /home/arwinian/public_html/teamdesign/sendmail.php on line 15Mensaje modificado por Alhanna el Apr 10 2006, 12:59 AM