mi codigo es el siguiente:
<?php
$Nombre = $_POST['Nombre'];
$Apellido = $_POST['Apellido'];
$Ciudad = $_POST['Ciudad'];
$Email = $_POST['Email'];
$Producto = $_POST['Producto'];
$Mensaje = $_POST['Mensaje'];
$header .= 'From: ' . $Email . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1 \r\n";
$mensaje .= "Nombre :" .$Nombre. " \r\n";
$mensaje .= "Apellido :". $Apellido . " \r\n";
$mensaje .= "Ciudad :". $Ciudad . " \r\n";
$mensaje .= "Email : " . $Email . " \r\n";
$mensaje .= "Producto : " .$Producto. " \r\n";
$mensaje .= "Mensaje : " .$Mensaje. " \r\n";
$mensaje .= "Enviado : " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'Cotizacion';
mail($para, $asunto, $mensaje, $header);
echo ' Gracias por contactarnos';
?>