<?php
$nombre = $_POST['nombre'];
$direccion = $_POST['direccion'];
$mail = $_POST['mail'];
$telefono = $_POST['telefono'];
$comentarios = $_POST['comentarios'];
$ciudad = $_POST['ciudad'];
$header = 'From: ' . $mail . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $nombre . " \r\n";
$mensaje .= "En la ciudad: " . $ciudad . " \r\n";
$mensaje .= "Con direccion en: " . $direccion . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Su telefono es: " . $telefono . " \r\n";
$mensaje .= "Comentarios: " . $_POST['comentarios'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '
[email protected]';
$asunto = 'Mensaje Autoplex';
mail($para, $asunto, utf8_decode($mensaje), $header);
?>
<style type="text/css">
<!--
.centro { text-align: center;
font-family: Tahoma, Geneva, sans-serif;
font-weight: bold;
}
-->
</style>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><br />
<br />
<table width="400" height="300" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><p class="centro"><img src="imgs/logo.jpg" alt="" width="104" height="94" /><br />
<br />
Gracias por contactarse,<br />
nos estaremos comunicándo con usted.<br />
<br />
</p></td>
</tr>
</table></td>
</tr>
</table>