fork(1) download
  1. <?php
  2.  
  3. if(!$_POST) exit;
  4.  
  5. // Email address verification, do not edit.
  6. function isEmail($email) {
  7. return(preg_match("/^[-_.[:alnum:]]+@((([[:alnum:]]|[[:alnum:]][[:alnum:]-]*[[:alnum:]])\.)+(ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mil|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|pro|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)$|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5])\.){3}([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$/i",$email));
  8. }
  9.  
  10. if (!defined("PHP_EOL")) define("PHP_EOL", "\r\n");
  11.  
  12. $first_name = $_POST['first_name'];
  13. $last_name = $_POST['last_name'];
  14. $email = $_POST['email'];
  15. $phone = $_POST['phone'];
  16. $select_price = $_POST['select_price'];
  17. $select_service = $_POST['select_service'];
  18. $subject = $_POST['subject'];
  19. $comments = $_POST['comments'];
  20. $verify = $_POST['verify'];
  21.  
  22. if(trim($first_name) == '') {
  23. echo '<div class="error_message">Attention! You must enter your name.</div>';
  24. exit();
  25. } else if(trim($email) == '') {
  26. echo '<div class="error_message">Attention! Please enter a valid email address.</div>';
  27. exit();
  28. } else if(!isEmail($email)) {
  29. echo '<div class="error_message">Attention! You have enter an invalid e-mail address, try again.</div>';
  30. exit();
  31. }
  32.  
  33. if(trim($comments) == '') {
  34. echo '<div class="error_message">Attention! Please enter your message.</div>';
  35. exit();
  36. }
  37.  
  38. $comments = stripslashes($comments);
  39. }
  40.  
  41.  
  42. // Configuration option.
  43. // Enter the email address that you want to emails to be sent to.
  44. // Example $address = "joe.doe@yourdomain.com";
  45.  
  46. //$address = "example@themeforest.net";
  47. $address = "mymail@gmail.com";
  48.  
  49.  
  50. // Configuration option.
  51. // i.e. The standard subject will appear as, "You've been contacted by John Doe."
  52.  
  53. // Example, $e_subject = '$name . ' has contacted you via Your Website.';
  54.  
  55. $e_subject = 'You\'ve been contacted by ' . $first_name . '.';
  56.  
  57.  
  58. // Configuration option.
  59. // You can change this if you feel that you need to.
  60. // Developers, you may wish to add more fields to the form, in which case you must be sure to add them here.
  61.  
  62. $e_body = "You have been contacted by $first_name. $first_name selected service of $select_service, their additional message is as follows. Customer max budge is $select_price, for this project." . PHP_EOL . PHP_EOL;
  63. $e_content = "\"$comments\"" . PHP_EOL . PHP_EOL;
  64. $e_reply = "You can contact $first_name via email, $email or via phone $phone";
  65.  
  66. $msg = wordwrap( $e_body . $e_content . $e_reply, 70 );
  67.  
  68. $headers = "From: $email" . PHP_EOL;
  69. $headers .= "Reply-To: $email" . PHP_EOL;
  70. $headers .= "MIME-Version: 1.0" . PHP_EOL;
  71. $headers .= "Content-type: text/plain; charset=utf-8" . PHP_EOL;
  72. $headers .= "Content-Transfer-Encoding: quoted-printable" . PHP_EOL;
  73.  
  74. if(mail($address, $e_subject, $msg, $headers)) {
  75.  
  76. // Email has sent successfully, echo a success page.
  77.  
  78. echo "<fieldset>";
  79. echo "<div id='success_page'>";
  80. echo "<h1>Email Sent Successfully.</h1>";
  81. echo "<p>Thank you <strong>$first_name</strong>, your message has been submitted to us.</p>";
  82. echo "</div>";
  83. echo "</fieldset>";
  84.  
  85. } else {
  86.  
  87. echo 'ERROR!';
  88.  
  89. }
Success #stdin #stdout 0.03s 24012KB
stdin
Standard input is empty
stdout
Standard output is empty