Código PHP:
Ver original
<?php //var_dump($_POST); $encabezados = 'MIME-Version: 1.0' . "\r\n"; $encabezados .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $encabezados .= 'From: ' . $_POST['Email'] . "\r\n"; //$encabezados .= 'To: Momarruecos <[email protected]>' . "\r\n"; $asunto = 'Reserva formulario Momarruecos'; $mensaje = ""; foreach($_POST as $k => $v) { $mensaje .= $k . ': '. $v . '<br>'; } //echo $mensaje; ?>