【问题标题】:PHP mail script, email not being sentPHP邮件脚本,未发送电子邮件
【发布时间】:2012-09-12 04:38:15
【问题描述】:

我正在尝试通过一个简单的 PHP 邮件脚本发送邮件。我已经检查了很多次代码,页面就像应该发送邮件一样转到“Thankyou_page”,但我还没有收到电子邮件。任何想法为什么这不起作用?

<?php
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "email@mail.com";
$subject = "Contact Us";

/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$feedback_page = "feedback_form.html";
$error_page = "error_message.html";
$thankyou_page = "thank_you.html";

/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$email_address = $_REQUEST['email_address'] ;
$comments = $_REQUEST['comments'] ;

/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
    $injections = array('(\n+)',
    '(\r+)',
    '(\t+)',
    '(%0A+)',
    '(%0D+)',
    '(%08+)',
    '(%09+)'
    );
    $inject = join('|', $injections);
    $inject = "/$inject/i";
    if(preg_match($inject,$str)) {
        return true;
    }
    else {
        return false;
    }
}

// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}

// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($comments)){
header( "Location: $error_page" );
}

// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}

// If we passed all previous tests, send the email then redirect to the thank you page.
else {
mail( $webmaster_email, $subject,
  $comments, "From: " . $email_address);
header( "Location: $thankyou_page" );
}
?>

【问题讨论】:

  • 能否打印出邮箱地址以确保地址正确?如果成功,邮件函数也返回 true,否则返回 false。您应该打印它或使用 if(mail(...)) header... else header(...error_page)
  • 你检查过你的服务器日志吗?邮件会被标记为垃圾邮件吗?
  • 您的电子邮件标题可能有误/格式错误。在这种情况下,收件人邮件服务器会拒绝您的邮件,即使邮件功能成功发送,您也不会收到。

标签: email php


【解决方案1】:

使用编写良好的库,如 SwiftMailer 或 PHPMailer。在没有很好地掌握 PHP 的情况下使用 mail 函数发送电子邮件是一个杀手。

PhpMailer vs. SwiftMailer?

【讨论】:

    【解决方案2】:

    您是否在 php.ini 文件中指定了 smtp 主机?如果是这样对吗?

    另外,禁用标题并打印邮件功能的输出以查看它是否成功。在您的 php.ini 文件中启用错误报告也是一个好主意。

    【讨论】:

      【解决方案3】:

      email@mail.com 是有效的电子邮件吗?

      【讨论】:

      • 这没有提供问题的答案。要批评或要求作者澄清,请在其帖子下方发表评论。
      • 这可能是答案,如果作者认为检查有用。
      • 它没有回答这个问题。答案应该被格式化为事实 - 如果您想摆脱一些初始条件,请使用注释。有用的提示最好留下评论(或对另一个答案的编辑)
      猜你喜欢
      • 2011-09-16
      • 1970-01-01
      • 1970-01-01
      • 2011-04-28
      • 1970-01-01
      • 2013-07-18
      • 2012-08-25
      • 2014-07-20
      • 1970-01-01
      相关资源
      最近更新 更多