Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/04/2012, 12:49
Avatar de chacabuco
chacabuco
 
Fecha de Ingreso: octubre-2010
Ubicación: Buenso Aires
Mensajes: 85
Antigüedad: 14 años, 5 meses
Puntos: 0
Agregar "asunto" y campos a un form

Estimados, en este link hay un formulario:
http://www.felipemuller.com.ar/form.html

Quiero que la consulta llegue con un Titulo pero no se donde indicarlo.
El archivo php es el siguiente:


$para = '[email protected]';

$asunto = $_POST["tipo"];
$mailheader = "From: ".$_POST["email"]."\r\n";
$mailheader .= "Reply-To: ".$_POST["email"]."\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
$MESSAGE_BODY = "Nombre: ".$_POST["nombre"]."<br>";
$MESSAGE_BODY .= "Email: ".$_POST["email"]."<br>";
$MESSAGE_BODY .= "Telefono: ".$_POST["telefono"]."<br>";
$MESSAGE_BODY .= "Tipo de contacto: ".$_POST["tipo"]."<br>";
$MESSAGE_BODY .= "Mensaje: ".nl2br($_POST["mensaje"])."<br>";
mail($para, $asunto, $MESSAGE_BODY, $mailheader) or die ("Error al enviar el Formulario!");


header( 'Location: http://www.miweb/gracias.html' )

Agradezco cualquier tipo de ayudita.
Saludos!