Advertisement
ali_siddique

Email Function

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