Código PHP:
<?
$destinatario='[email protected],$Email';
$asunto = '$Asunto';
$cuerpo ="$Mensaje, <br><br>Firma: $Nombre";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: Guia Rural del Norte Argentino <[email protected]>\r\n";
mail($destinatario,$asunto,$cuerpo,$headers);
header ("Location: $HTTP_REFERER?F=OK");
?>