【问题标题】:PHP email Script Not WorkingPHP电子邮件脚本不起作用
【发布时间】:2012-12-06 11:04:19
【问题描述】:

我有一个 php 电子邮件脚本,它曾与以前使用过的网站一起使用,但我已将其移至重新设计的网站,当我点击提交时,页面会重新加载,并在 url 中添加以下文本:

?name=Lee+Thomas&email=leethomas%40corwenforestry.co.uk&message=message&Submit=Send

这是contact.html页面中的表格:

<form name="contact" method="post" action="sendmail.php">
 <table border="0" align="center" cellpadding="0" cellspacing="1">
  <tr>
   <td>
    <input name="name" placeholder="Name" type="text" id="name" size="50">
   </td>
  </tr>
  <tr>
   <td>
    <input name="email" placeholder="Email" type="text" id="email" size="50">
   </td>
  </tr>
  <tr>
   <td>
    <textarea name="message" placeholder="Message" cols="50" rows="4" id="message">
    </textarea>
   </td>
  </tr>
  <tr>
   <td>
     <input type="submit" name="Submit" value="Send"> <input type="reset" name="Reset" value="Reset">
   </td>
  </tr>
 </table>
</form>

这里是 sendmail.php 脚本:

<?php
if(isset($_POST['email'])) {
    // EDIT THE 2 LINES BELOW AS REQUIRED
    $email_to = "number8pie@gmail.com";
    $email_subject = "CFR F3 Contact Form";


    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['name']) ||
        !isset($_POST['email']) ||
        !isset($_POST['message'])) {
        died('We are sorry, but there appears to be a problem with the form you submitted.');       
    }

    $name = $_POST['name']; // required
    $email_from = $_POST['email']; // required
    $message = $_POST['message']; // 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,$name)) {
    $error_message .= 'The Name you entered does not appear to be valid.<br />';
  }
  }
  if(strlen($message) < 2) {
    $error_message .= 'The Message you entered do not appear to be valid.<br />';
  }
  if(strlen($error_message) > 0) {
    died($error_message);
  }
    $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 .= "Name: ".clean_string($name)."\n";
    $email_message .= "Email: ".clean_string($email_from)."\n";
    $email_message .= "Message: ".clean_string($message)."\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);  
?>

Thank you for contacting CF Racing F3, we will be in touch with you very soon.

<?php
?>

谁能告诉我这里哪里出错了?

[编辑] 下面块引号中的问题现已解决,重置按钮正是这样做的。

我遇到的另一个问题是重置按钮充当另一个 提交/发送按钮,有没有办法让我拥有提交/发送按钮 充当那个按钮?

提前感谢您的帮助。

[编辑] 更改了 html 以删除多余的表单标签。

【问题讨论】:

  • 删除&lt;table&gt;内的&lt;form&gt;标签。

标签: php html


【解决方案1】:

删除一个流浪&lt;form&gt;标签后有两个&lt;form&gt;标签尝试

使用这个

  <form name="contact" method="post" action="sendmail.php">
   <table border="0" align="center" cellpadding="0" cellspacing="1">

而不是

<form>
 <table border="0" align="center" cellpadding="0" cellspacing="1">
  <form name="contact" method="post" action="sendmail.php">

【讨论】:

  • 谢谢,我错过了。现在我收到成功消息,但没有电子邮件发送到提到的帐户。我还在表单之前放置​​了正确的表单标签,出于 css 原因,我想我会让你知道这是否有任何区别
  • 这也取决于托管..如果您已共享它最多需要 10 -20 分钟..所以请等待一段时间,即使没有收到邮件也不要发表评论
  • 没有,仍然没有电子邮件,而且是我用来测试的 gmail,每隔一次我测试它并且它有效,它会在一分钟内到达。
  • 啊球。我的错,我将它上传到实时服务器的暂存部分并且它有效。 WAMP 必须配置错误才能通过 PHP 发送电子邮件。
【解决方案2】:

去掉顶部的&lt;form&gt;标签,你有重复

【讨论】:

    【解决方案3】:

    尝试删除第一个表单标签:

    **<form>**
    <table border="0" align="center" cellpadding="0" cellspacing="1">
    <form name="contact" method="post" action="sendmail.php">
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-09-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-10-16
      • 1970-01-01
      • 2014-05-01
      相关资源
      最近更新 更多