繁体   English   中英

没有收到来自PHP的电子邮件

[英]not receiving emails from php

我知道我的JavaScript结果正常运行时,正在从该进程文件中向我发送状态“ 1”。 问题是我没有收到电子邮件。

<?php
//Retrieve form data. 
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = ($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = ($_GET['email']) ?$_GET['email'] : $_POST['email'];
$comment = ($_GET['comment']) ?$_GET['comment'] : $_POST['comment'];
//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;
//Simple server side validation for POST data, of course, 
//you should validate the email
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$email) $errors[count($errors)] = 'Please enter your email.'; 
if (!$comment) $errors[count($errors)] = 'Please enter your comment.'; 
//if the errors array is empty, send the mail
if (!$errors) {
    //recipient - change this to your name and email
    $to = 'myemail@gmail.com';    
    //sender
    $from = $name . ' <' . $email . '>';

    //subject and the html message
    $subject = 'Comment from ' . $name;    
    $message = '
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head></head>
    <body>
    <table>
        <tr><td>Name</td><td>' . $name . '</td></tr>
        <tr><td>Email</td><td>' . $email . '</td></tr>
        <tr><td>Comment</td><td>' . nl2br($comment) . '</td></tr>
    </table>
    </body>
    </html>';
    //send the mail
    $result = sendmail($to, $subject, $message, $from);

    //if POST was used, display the message straight away
    if ($_POST) {
        if ($result) echo 'Thank you! We have received your message.';
        else echo 'Sorry, unexpected error. Please try again later';

    //else if GET was used, return the boolean value so that 
    //ajax script can react accordingly
    //1 means success, 0 means failed
    } else {
        echo $result;    
    }
//if the errors array has values
} else {
    //display the errors message
    for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
    echo '<a href="form.php">Back</a>';
    exit;
}
//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
    $headers = "MIME-Version: 1.0" . "\r\n";
    $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
    $headers .= 'From: ' . $from . "\r\n";

    $result = mail($to,$subject,$message,$headers);

    if ($result) return 1;
    else return 0;
}
?>

您提到您正在使用GoDaddy。 GoDaddy要求您合法设置发件人地址,以匹配从其发送邮件的站点的域,或将SMTP与Authentication一起使用。

这种发送电子邮件的方法存在很大的漏洞。 垃圾邮件发送者可以通过插入其他收件人来轻松覆盖“ 发件人:”标头。

我不确定您的应用程序以邮件为中心的计划,但是我建议使用PHPMailerPEAR :: Mail之类的软件包,因为它可以为您提供更高级别的电子邮件处理。 这使您可以专注于应用程序中更重要的部分。 内置的PHP mail()功能的功能非常有限,当您尝试扩展邮件功能时,您会遇到许多障碍,而基本的mail()函数如果没有很多其他逻辑就无法处理代表(想到的是附件,MIME类型等)。

在测试邮件时,您可以将其直接测试到服务器上,php mail具有已经在其上运行的功能。 如果您在本地xampp上对其进行测试,则不会发送,除非您在localhost中设置了php mailer。 但对我而言,最好在服务器上进行测试,而不是在localhost中进行测试。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM