Código:
Código PHP:
Ver original
<?php // Your Email Address // Register Form if ( isset($_POST['telephone']) && isset($_POST['name']) && filter_var($_POST['email'], FILTER_VALIDATE_EMAIL) ) { // Detect & Prevent Header Injections $test = "/(content-type|bcc:|cc:|to:)/i"; foreach ( $_POST as $key => $val ) { exit; } } // Email Format $body = "SOLICITANTE: \n\n"; $body .= "Nombre: $_POST[name] \n\n"; $body .= "Correo: $_POST[email] \n\n"; $body .= "Telefono: $_POST[telephone] \n\n"; $body .= "Hotel: $_POST[ticket] \n\n"; $body .= "Fecha de llegada: $_POST[llegada] \n\n"; $body .= "Fecha de salida: $_POST[salida] \n\n"; $body .= "Nro. de adultos: $_POST[adultos] \n\n"; //Send email } ?>
Gracias por su ayuda.