Jump to content

shavedhead

New Members
  • Posts

    6
  • Joined

  • Last visited

shavedhead's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. jsbones, just awesome! It works!!! Thank you very much!
  2. Yes, I am trying to send it to gmail. I can receive messages from the PHP code I published, and I thought somebody could help me to edit this code just to change "email" field to "phone" properly.
  3. Unfortunately both codes don’t work. May be I didn’t explained what I need clearly. I need just two fields "Name" and "Phone", and "Submit" button. jazzman1, seems like your code still has e-mail validation in second field and I got the message about that if I try to put figures inside. But even if its e-mail, if doesn’t go to mailbox even if I have a note that everything was successfully sent. ginerjm, sorry but it doesn’t work on my side :-( I can put figures in the second field (even if I still can see e-mail validation in the code) and it says that it was sent but I don’t get anything on e-mail (yes, I put my address in the code). The form I posted still works, but I don’t need an e-mail, I need a phone number to be sent. Folks, I really appreciate your trying to help me!!!
  4. ginerjm, the hungup is - what I did to change email to phone dont work. jcbones, sorry but it doesnt work. I dont even see the line "Thank you for contacting us ...." after submit. Sorry for a mess in code, I tryed to organize for now: <?php if(isset($_POST['email'])) { // EDIT THE 2 LINES BELOW AS REQUIRED $email_to = "mail@gmail.com"; $email_subject = "Your email subject line"; function died($error) { // your error code can go here echo "We are very sorry, but there were error(s) found with the form you submitted. "; echo "These errors appear below.<br /><br />"; echo $error."<br /><br />"; echo "Please go back and fix these errors.<br /><br />"; die(); } // validation expected data exists if(!isset($_POST['first_name']) || !isset($_POST['email'])) { died('We are sorry, but there appears to be a problem with the form you submitted.'); } $first_name = $_POST['first_name']; // required $email_from = $_POST['email']; // required $error_message = ""; $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/'; if(!preg_match($email_exp,$email_from)) { $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; } $string_exp = "/^[A-Za-z .'-]+$/"; if(!preg_match($string_exp,$first_name)) { $error_message .= 'The First Name you entered does not appear to be valid.<br />'; } $email_message = "Form details below.\n\n"; function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $email_message .= "First Name: ".clean_string($first_name)."\n"; $email_message .= "Email: ".clean_string($email_from)."\n"; // create email headers $headers = 'From: '.$email_from."\r\n". 'Reply-To: '.$email_from."\r\n" . 'X-Mailer: PHP/' . phpversion(); @mail($email_to, $email_subject, $email_message, $headers); ?> <!-- include your own success html here --> Thank you for contacting us. We will be in touch with you very soon. <?php } ?>
  5. I am really sorry for my silly question. I need a contact form with just two fields: "Name" and "Phone", and "Submit" button. Don't know why, but couple PHP scripts I used before don't work this time. Many scripts from the net I found this week don't work correctly as well even if I change nothing. Finally I found one that works, however, there are 5 fields in the form. I eliminated 3 of them (and it still works), but I can't solve the problem how to change "email" to "phone". All efforts to do it were unsuccessful. Could you help me with that? Thanx a lot. Alex. <form name="contactform" method="post" action="contacts.php"> <label for="first_name">First Name *</label> <input type="text" name="first_name" maxlength="50" size="30"> <label for="email">Email Address *</label> <input type="text" name="email" maxlength="80" size="30"> <input type="submit" value="Submit"> </form> <?php if(isset($_POST['email'])) { // EDIT THE 2 LINES BELOW AS REQUIRED $email_to = "supetraveller@gmail.com"; $email_subject = "Your email subject line"; function died($error) { // your error code can go here echo "We are very sorry, but there were error(s) found with the form you submitted. "; echo "These errors appear below.<br /><br />"; echo $error."<br /><br />"; echo "Please go back and fix these errors.<br /><br />"; die(); } // validation expected data exists if(!isset($_POST['first_name']) || !isset($_POST['email'])) { died('We are sorry, but there appears to be a problem with the form you submitted.'); } $first_name = $_POST['first_name']; // required $email_from = $_POST['email']; // required $error_message = ""; $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/'; if(!preg_match($email_exp,$email_from)) { $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; } $string_exp = "/^[A-Za-z .'-]+$/"; if(!preg_match($string_exp,$first_name)) { $error_message .= 'The First Name you entered does not appear to be valid.<br />'; } $email_message = "Form details below.\n\n"; function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $email_message .= "First Name: ".clean_string($first_name)."\n"; $email_message .= "Email: ".clean_string($email_from)."\n"; // create email headers $headers = 'From: '.$email_from."\r\n". 'Reply-To: '.$email_from."\r\n" . 'X-Mailer: PHP/' . phpversion(); @mail($email_to, $email_subject, $email_message, $headers); ?> <!-- include your own success html here --> Thank you for contacting us. We will be in touch with you very soon. <?php } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.