dongliaojing0554 2014-01-23 00:32
浏览 53
已采纳

php邮件表单不起作用[关闭]

I think I fixed this. This was the original:

<?php
    if(isset($_POST['email'])) {

    $email = $_POST['email'];
    $name = $_POST['name'];
    $message = $_POST['message'];;
    $subject = $email = $_POST['subject'];;

    $email_to = $email;
    $header = 'From: 1totheN <website@1tothen.com>' . "
";
    function clean_text($string) {
    $bad = array("content-type","bcc:","to:","cc:","href");
    return str_replace($bad,"",$string);
    }
    $email_message .= "Name: ".clean_text($email)."
";
    $email_message .= "Email: ".clean_text($email)."
";
    $email_message .= "Message: ".clean_text($message)."
";
    @mail($email_to, $subject, $email_message, $header);
    echo "Your message has been sent.";

}
?>

Here's the markup on the HTML page:

<form class="contact-form" id="subscribeForm" action="mail.php" method="post">
       <input type="text" name="name" class="required" placeholder="YOUR NAME">
       <input type="text" name="email" class="required email" placeholder="EMAIL ADDRESS">
       <input type="text" name="subject" class="required last" placeholder="SUBJECT">
       <textarea name="message" placeholder="YOUR MESSAGE"></textarea>
       <input type="submit" name="submit" value="SUBMIT YOUR MESSAGE">
       <h6 id="form_result">Your email will not be published.</h6>
</form>

This is the fix:

$email_to = "webmail@1tothen.com";
$header = 'From: 1totheN <webmail@1tothen.com>' . "
";
$email_message .= "Name: ".clean_text($name)."
";

I think that fixes it. I added an email to the $email_to field, and added the $name. Seems to work.

  • 写回答

1条回答 默认 最新

  • doushi6947 2014-01-23 00:47
    关注

    The below now works. It's just small syntactic mistakes, you had a few additional ; and this line is wrong and presumably a mistake: $subject = $email = $_POST['subject'];

    I also moved the function outside of the if statement...it's not incorrect to have it there, it just looks a bit weird.

    function clean_text($string) {
        $bad = array("content-type","bcc:","to:","cc:","href");
        return str_replace($bad,"",$string);
    }
    
    if(isset($_POST['email'])) {
        $email = $_POST['email'];
        $name = $_POST['name'];
        $message = $_POST['message'];
        $subject = $_POST['subject'];
    
        $email_to = $email;
        $header = 'From: 1totheN <website@1tothen.com>' . "
    ";
        $email_message .= "Name: ".clean_text($email)."
    ";
        $email_message .= "Email: ".clean_text($email)."
    ";
        $email_message .= "Message: ".clean_text($message)."
    ";
        @mail($email_to, $subject, $email_message, $header);
        echo "Your message has been sent.";
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度