使用php联系表单发布时,电子邮件地址无效

时间:2014-10-24 22:12:51

标签: php forms validation email

我的脚本没有发送电子邮件的问题,返回错误消息是:电子邮件地址无效!当我在文本字段中输入我的电子邮件地址时会发生这种情况。我觉得这是创建问题的(preg_match)方法,但在网上看之后我真的不明白方法的内容。希望你们能帮忙,谢谢。

消息来源代码:

  <?php
  /*Select email recipient*/
  $myemail = "info@shadowempires.url.ph";

  /*Check all form inputs using check input function*/
  $name = check_input($_POST['name'], "Please enter your name");
  $email = check_input($_POST['email'], "Please enter your email address.");
  $comment = check_input($_POST['comment'], "Please write a message.");

  /*If email is not valid show error message*/
  if (!preg_match("/(\w\-]+\@[\w\-]+\.[\w\-]+)/", $email)){
      show_error("Email address not valid!");
  }

  /*Lets prepare the message for the email*/
  $message = "Customer Question!

  Contact form has been submitted by:

  Name: $name
  Email: $email
  Comments: $comment

  End of message";

  /*Send the message using mail() function*/
  mail($myemail, $message);

  /*Redirect visitor to the thank you page*/
  header('Location: thankyou.htm');
  exit();

  /*Functions we used*/
  function check_input($data, $problem=''){
      $data = trim($data);
      $data = stripslashes($data);
      $data = htmlspecialchars($data);
      if ($problem && strlen($data) == 0){
          show_error($problem);
      }
      return $data;
  }
  function show_error($myError){
  ?>
      <html>
      <body>
      <b>Please correct the following error:</b><br />
      <?php echo $myError; ?>
      </body>
      </html>
  <?php exit();
  }
  ?>

2 个答案:

答案 0 :(得分:1)

filter_var

怎么样?
if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
    // valid email address
}

这是验证电子邮件地址的简便方法。

更新1

看看这个答案。这里有关于使用正则表达式验证电子邮件地址的更多信息:How to validate an email address in PHP

更新2

有一个测试正则表达式电子邮件模式的工具,请看here

答案 1 :(得分:0)

你需要修复你的正则表达式,这是一个工作的例子:

/((\w|\-))+\@((\w|\-))+\.((\w|\-))+/