Código PHP :
<?php $rfc = $_POST['rfc']; $folio = $_POST['folio']; $producto = $_POST['producto']; $clave = $_POST['clave']; $email = $_POST['email']; $tel = $_POST['tel']; $calle = $_POST['calle']; $radio = $_POST['radio']; $numin = $_POST['numin']; $numex = $_POST['numex']; $colonia = $_POST['colonia']; $cp = $_POST['cp']; $poblacion = $_POST['poblacion']; $ciudad = $_POST['ciudad']; $estado = $_POST['estado']; $header = 'From: ' . $email . " \r\n"; $header .= "X-Mailer: PHP/" . phpversion() . " \r\n"; $header .= "Mime-Version: 1.0 \r\n"; $header .= "Content-Type: text/plain"; $mensaje .= "R.F.C.: " . $rfc . " \r\n"; $mensaje .= "Folio: " . $folio . " \r\n"; $mensaje .= "Producto: " . $producto . " \r\n"; $mensaje .= "Clace DAP/DIE: " . $clave . " \r\n"; $mensaje .= "E-mail: " . $email . " \r\n"; $mensaje .= "Telefono: " . $tel . " \r\n"; $mensaje .= "Calle: " . $calle . " \r\n"; $mensaje .= "Donde desea recibir su estado de cuenta: " . $radio . " \r\n"; $mensaje .= "Numero interior: " . $numin . " \r\n"; $mensaje .= "Numero exterior: " . $numex . " \r\n"; $mensaje .= "Colonia: " . $colonia . " \r\n"; $mensaje .= "C.P.: " . $cp . " \r\n"; $mensaje .= "Poblacion: " . $poblacion . " \r\n"; $mensaje .= "Ciudad: " . $ciudad . " \r\n"; $mensaje .= "Estado: " . $estado . " \r\n"; $para = '[email protected]'; $asunto = 'Estado de Cuenta'; mail($para, $asunto, utf8_decode($mensaje), $header); $resultMenuUrlName = "estado_gracias.html"; echo "<META HTTP-EQUIV=Refresh CONTENT=0;URL=$resultMenuUrlName>" ?>