Advertisement
deliciousthemes

Untitled

Apr 16th, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.68 KB | None | 0 0
  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|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. $name     = $_POST['name'];
  13. $email    = $_POST['email'];
  14. $comments = $_POST['comments'];
  15. $verify   = $_POST['verify'];
  16.  
  17. if(trim($name) == '') {
  18.     echo '<div class="error_message">Attention! You must enter your name.</div>';
  19.     exit();
  20. } else if(trim($email) == '') {
  21.     echo '<div class="error_message">Attention! Please enter a valid email address.</div>';
  22.     exit();
  23. } else if(!isEmail($email)) {
  24.     echo '<div class="error_message">Attention! You have enter an invalid e-mail address, try again.</div>';
  25.     exit();
  26. }
  27.  
  28.  
  29. if(trim($comments) == '') {
  30.     echo '<div class="error_message">Please enter your message.</div>';
  31.     exit();
  32. } else if(!isset($verify) || trim($verify) == '') {
  33.     echo '<div class="error_message">Please enter the verification number.</div>';
  34.     exit();
  35. } else if(trim($verify) != '4') {
  36.     echo '<div class="error_message">The verification number you entered is incorrect.</div>';
  37.     exit();
  38. }
  39.  
  40. if(get_magic_quotes_gpc()) {
  41.     $comments = stripslashes($comments);
  42. }
  43.  
  44.  
  45. // Configuration option.
  46. // Enter the email address that you want to emails to be sent to.
  47. // Example $address = "joe.doe@yourdomain.com";
  48.  
  49. //$address = "example@example.net";
  50. $address = "example@example.net";
  51.  
  52.  
  53. // Configuration option.
  54. // i.e. The standard subject will appear as, "You've been contacted by John Doe."
  55.  
  56. // Example, $e_subject = '$name . ' has contacted you via Your Website.';
  57.  
  58. $e_subject = 'You\'ve been contacted by ' . $name . '.';
  59.  
  60.  
  61. // Configuration option.
  62. // You can change this if you feel that you need to.
  63. // Developers, you may wish to add more fields to the form, in which case you must be sure to add them here.
  64.  
  65. $e_body = "You have been contacted by $name. The additional message is as follows." . PHP_EOL . PHP_EOL;
  66. $e_content = "\"$comments\"" . PHP_EOL . PHP_EOL;
  67. $e_reply = "You can contact $name via email at $email.";
  68.  
  69. $msg = wordwrap( $e_body . $e_content . $e_reply, 70 );
  70.  
  71. $headers = "From: $email" . PHP_EOL;
  72. $headers .= "Reply-To: $email" . PHP_EOL;
  73. $headers .= "MIME-Version: 1.0" . PHP_EOL;
  74. $headers .= "Content-type: text/plain; charset=utf-8" . PHP_EOL;
  75. $headers .= "Content-Transfer-Encoding: quoted-printable" . PHP_EOL;
  76.  
  77. if(mail($address, $e_subject, $msg, $headers)) {
  78.  
  79.     // Email has sent successfully, echo a success page.
  80.  
  81.     echo "<fieldset>";
  82.     echo "<div id='success_page'>";
  83.     echo "<h1>Email Sent Successfully.</h1>";
  84.     echo "<p>Thank you <strong>$name</strong>, your message has been submitted to us.</p>";
  85.     echo "</div>";
  86.     echo "</fieldset>";
  87.  
  88. } else {
  89.  
  90.     echo 'ERROR!';
  91.  
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement