os dejo los codigos.
cons-recib.php
Cita:
--<div id="body_text">
<h1>> Gracias por contactarnos
<? echo " $nombre \n";?>
</h1>
<p> Su <? echo " $motivo \n";?> será procesada y respondida a la
mayor brevedad posible.</p>
<?
$nombre=$HTTP_GET_VARS["nombre"];
$email=$HTTP_GET_VARS["email"];
$comentario=$HTTP_GET_VARS["comentario"];
$destinatario="[email protected]";
$asunto="Contacto_desde_website :: $motivo";
$cabeceras="From: $nombre<$email>\r\n";
$cabeceras .="Content-Type: text/html; charset=utf-8\r\n";
$texto="<img src=\"http://www.trackpro.es/public/img/branding/logo.jpg\"></br><b></br>Consulta desde TrackPro.es</b></br>";
$texto = $texto . "<b>Nombre :</b> " . $nombre . "</br>";
$texto = $texto . "<b>Email :</b> " . $email . "</br>";
$texto = $texto . "<b>Comentario :</b> " . $comentario . "</br>";
mail ($destinatario , $asunto , $texto , $cabeceras); ?>
<p> </p>
<h1>> Gracias por contactarnos
<? echo " $nombre \n";?>
</h1>
<p> Su <? echo " $motivo \n";?> será procesada y respondida a la
mayor brevedad posible.</p>
<?
$nombre=$HTTP_GET_VARS["nombre"];
$email=$HTTP_GET_VARS["email"];
$comentario=$HTTP_GET_VARS["comentario"];
$destinatario="[email protected]";
$asunto="Contacto_desde_website :: $motivo";
$cabeceras="From: $nombre<$email>\r\n";
$cabeceras .="Content-Type: text/html; charset=utf-8\r\n";
$texto="<img src=\"http://www.trackpro.es/public/img/branding/logo.jpg\"></br><b></br>Consulta desde TrackPro.es</b></br>";
$texto = $texto . "<b>Nombre :</b> " . $nombre . "</br>";
$texto = $texto . "<b>Email :</b> " . $email . "</br>";
$texto = $texto . "<b>Comentario :</b> " . $comentario . "</br>";
mail ($destinatario , $asunto , $texto , $cabeceras); ?>
<p> </p>
codigo en el html
Cita:
<div id="contact_form">
<a name="contact"></a>
<h2>Hablamos?</h2>
<form action="/cons-recib.php" method="get" accept-charset="utf-8" id="form1">
<p>
<label for="email">Email</label>
<input type="text" id="email" name="email" class="text" value="" />
</p>
<p>
<label for="nombre">Nombre</label>
<input type="text" id="nombre" name="nombre" class="text" value="" />
</p>
<p>
<label for="comentarios">Tu mensaje...</label>
<textarea id="comentarios" name="comentarios" rows="5" cols="5"></textarea>
</p>
<p>
<input type="hidden" name="contact" value="1" />
<span class="left" style="padding-top: 10px;">
</span>
<input type="submit" value="" class="submit right" />
</p>
</form>
<a name="contact"></a>
<h2>Hablamos?</h2>
<form action="/cons-recib.php" method="get" accept-charset="utf-8" id="form1">
<p>
<label for="email">Email</label>
<input type="text" id="email" name="email" class="text" value="" />
</p>
<p>
<label for="nombre">Nombre</label>
<input type="text" id="nombre" name="nombre" class="text" value="" />
</p>
<p>
<label for="comentarios">Tu mensaje...</label>
<textarea id="comentarios" name="comentarios" rows="5" cols="5"></textarea>
</p>
<p>
<input type="hidden" name="contact" value="1" />
<span class="left" style="padding-top: 10px;">
</span>
<input type="submit" value="" class="submit right" />
</p>
</form>