ContactUs
if (!$HTTP_POST_VARS){ ?>
First Name: Last Name: Email: Phone: Description: }else{ //Estoy recibiendo el formulario, compongo el cuerpo $cuerpo = "Sent from KristispoolService:\n"; $cuerpo = "Sent from KristispoolService .- \n"; $cuerpo .= "Name: " . $HTTP_POST_VARS["name"] . "\n"; $cuerpo .= "Last Name: " . $HTTP_POST_VARS["lastname"] . "\n"; $cuerpo .= "E-mail: " . $HTTP_POST_VARS["email"] . "\n"; $cuerpo .= "Phone: " . $HTTP_POST_VARS["phone"] . "\n"; $cuerpo .= "Description: " . $HTTP_POST_VARS["mensaje"] . "\n"; //mando el correo... mail("shalendarm@gmail.com","Sent from KristispoolService",$cuerpo,"From: KristisPoolService"); //doy las gracias por el envío echo " Thanks you for your message. We will contact you as soon as possible"; echo " "; } ?>