0

我写了一个 php 联系表格,但不知道为什么它不发送电子邮件。表单提交正常,但未发送实际电子邮件。

下面是我的 PHP 代码。

<?php  
 //If the form is submitted  
 if(isset($_POST['submit'])) {  

     //Check to make sure that the name field is not empty  
     if(trim($_POST['contactname']) == '') {  
         $hasError = true;  
     } else {  
        $name = trim($_POST['contactname']);  
     }  
     //Check to make sure that the subject field is not empty  
    if(trim($_POST['subject']) == '') {  
         $hasError = true;  
     } else {  
         $subject = trim($_POST['subject']);  
     }  

    //Check to make sure sure that a valid email address is submitted  
    if(trim($_POST['email']) == '')  {  
         $hasError = true;  
     } else if (!preg_match("/^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$/i", trim($_POST['email']))) {  
         $hasError = true;
     } else {  
         $email = trim($_POST['email']);  
     }  

    //Check to make sure comments were entered  
     if(trim($_POST['message']) == '') {  
         $hasError = true;  
    } else {  
        if(function_exists('stripslashes')) {  
             $comments = stripslashes(trim($_POST['message']));  
       } else {  
            $comments = trim($_POST['message']);  
        }  
     }  

    //If there is no error, send the email  
     if(!isset($hasError)) {  
        $emailTo = 'xyz@xyz.com';  
        $body = "Name: $name \n\nEmail: $email \n\nSubject: $subject \n\nComments:\n $comments";  
        $headers = 'From: My Site <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;  

        mail($emailTo, $subject, $body, $headers);  
       $emailSent = true;  
 }  
}  
?> 

下面的 HTML 代码是联系表单 HTML:

 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" id="contactform">
                <fieldset class="contact-fieldset">
                    <h2>Send us a message</h2>
                    <ul>
                        <li>
                            <label for="contactname">Your Name:</label>
                            <div class="ctinput-bg"><input type="text" name="contactname" id="contactname" value="" class="contact-input required" /></div>
                        </li>
                        <li>
                            <label for="email">Email:</label>
                            <div class="ctinput-bg"><input type="text" id="email" name="email" class="contact-input required email" /></div>
                        </li>     
                        <li>
                            <label for="subject">Subject:</label>
                            <div class="ctinput-bg"><input type="text" name="subject" id="subject" class="contact-input required" /></div>
                        </li>
                        <li>
                            <label for="message">Your message:</label>
                            <div class="cttxtarea-bg"><textarea rows="6" cols="40" id="message" name="message" class="contact-textarea required"></textarea></div>
                        </li>
                        <li>
                            <div class="form-button contact-submit">
                                <span><input type="submit" value="&nbsp;&nbsp;send message&nbsp;&nbsp;" name="submit" /></span>
                            </div>
                        </li>                      
                    </ul>
                </fieldset>
            </form>
4

4 回答 4

1

除了其他人提供的解决方案之外,我强烈推荐使用 SwiftMailer 库。

我必须创建一个自动电子邮件功能,而手动设置标题等是一场噩梦。SwiftMailer 为我节省了大量时间,请参见此处的示例。

于 2012-09-11T13:14:43.557 回答
0

听起来您的mail功能设置不正确。检查您的php.ini文件并确保您具有正确的 SMTP 服务器设置。

此外,与您的原始问题无关,但我不确定<ul>用于标记表单在语义上是否正确。一组字段并不是真正的未排序列表,我更喜欢使用语义正确<table>的,甚至是一系列<div>s。

于 2012-09-11T12:30:48.190 回答
0

我看到两件事:

1- $hasError = false 在代码顶部的声明(确保它存在)

2 - 生成标题如下:

$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

希望这能解决问题,

于 2012-09-11T12:34:00.957 回答
0

您可以尝试检查邮件是否实际发送:

if (mail($to, $subject, $body)) {
   echo("<p>Message successfully sent!</p>");
} else {
   echo("<p>Message delivery failed...</p>");
}

并确保您还可以对标头进行 var_dump 以查看它们是否正确:

var_dump($headers);

这些东西不会解决问题,但肯定会有助于调试它。

于 2012-09-11T12:34:58.723 回答