0

使用 PHP mail() 函数时遇到问题。它根本不会发送。

我的如下:

//email them new password
$recipient = $actual_email; //recipient
$subject = "Reset Password"; //subject = reason for contacting
// To send HTML mail, the Content-type header must be set
$headers  = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "From: Website <do-not-reply-reset@domain.co.nz>\r\n"; //headerfields
$mail_body = "
  <html>
   <head>
     <title>Reset Password</title>
   </head>
    <body>
        <h2>Reset Password</h2>
        <p>Hello $actual_email<br />
        You recently asked to reset your password.</p>
        <p>Your reset password is below:<br />
        <br />
        <b>$string</b></p>
        <br />
        <p>It is recommended you copy and paste this password into the login page, and change your password under settings, then delete this email.</p>
        <p>If you did not request this change of password, it is recommended you login and change your password immediately, and get in contact with us.</p>
        <p>Thank you,<br />
        The Team
        <br />
        NOTE:<br />
        Please do not reply to this message, which was sent from an unmonitored e-mail address. Mail sent to this address cannot be answered.</p>
     </body>
    </html>";       
//send mail
if(mail($recipient, $subject, $mail_body, $headers)){ //mail command
   header('Location: index.php?success=yes');
   exit;
} else {
   $error_message = "<div class='error'>
      <img src='http://resources.domain.co.nz/backgrounds/icon_error.png' class='messageimg' />
    <h4>Error - Recovery Error</h4>
    <p>There was an error sending a recovery password. If the problem persists, please contact us directly.</p>
   </div>"; 
}

我确保 sendmail 安装在 UNIX 的默认位置,并且它在 PHP.ini 中正确引用它。

我以前使用过相同的代码,没有任何问题,所以我认为它是服务器端的东西?

任何帮助表示赞赏。

4

4 回答 4

0

披露:我是 AlphaMail 背后的开发者之一

正如WebnetMobile 所说,我还建议您停止使用PHP 内置的mail() 函数。如果您正在为 PHP 寻找一个好的 SMTP 客户端,我宁愿建议您使用SwiftMailerPHPMailer,它们可以更好地完成工作!(更简洁的代码和更容易处理错误)。

但请记住,这只是来自客户端,它不能保证您的电子邮件一旦“发送”就送达。因此,我建议您使用事务性电子邮件服务,例如:

为什么?

  • 您不必过多考虑电子邮件传递。
  • 统计数据。让您跟踪总发送/点击/打开/退回。
  • 通常基于 Web 服务而不是 SMTP。即更容易处理。
  • 更简洁的代码(至少如果您使用 AlphaMail 将数据与表示分离)。
  • 可扩展且面向未来。

如果您选择使用 AlphaMail,您可以使用AlphaMail PHP-client

例子:

include_once("comfirm.alphamail.client/emailservice.class.php");

$email_service = AlphaMailEmailService::create()
    ->setServiceUrl("http://api.amail.io/v1")
    ->setApiToken("YOUR-ACCOUNT-API-TOKEN-HERE");

$person = new stdClass();
$person->userId = "1234";
$person->firstName = "John";
$person->lastName = "Doe";
$person->dateOfBirth = 1975;

$response = $email_service->queue(EmailMessagePayload::create()
    ->setProjectId(12345) // Your AlphaMail project (determines template, options, etc)
    ->setSender(new EmailContact("Sender Company Name", "from@example.com"))
    ->setReceiver(new EmailContact("Joe Doe", "to@example.org"))
    ->setBodyObject($person) // Any serializable object
);

AlphaMail 的另一个优点是您可以直接在AlphaMail Dashboard中编辑您的模板,并且您可以使用Comlang 模板语言来格式化您的电子邮件。

<html>
    <body>
        <b>Name:</b> <# payload.firstName " " payload.lastName #><br>
        <b>Date of Birth:</b> <# payload.dateOfBirth #><br>

        <# if (payload.userId != null) { #>
            <a href="/sign-up">Sign Up Free!</a>
        <# } else { #>
            <a href="/login?id=<# payload.userId #>">Sign In</a>
        <# } #>
    </body>
</html>
于 2012-11-14T23:56:59.563 回答
0

原来 SELinux 必须关闭邮件才能工作。

一旦它关闭,机器重新启动 mail() 工作没有任何问题。

于 2012-11-18T22:27:07.467 回答
0

代码对我来说看起来不错,它应该与服务器有关。如果您认为服务器设置正确,则可能是由 selinux 引起的。请从外壳检查:

getsebool -a | grep mail

如果你得到一个像

allow_postfix_local_write_mail_spool --> off

比你发现问题。

要么禁用它,要么使用以下命令允许从 httpd 发送邮件:

setsebool -P httpd_can_sendmail on

如果这不能解决您的问题,请从日志中发布错误消息。

于 2012-11-20T11:00:39.150 回答
-1

检查发送邮件是否在您的 Linux 服务器上正确配置,然后相应地更改 PHP.INI 中的设置。

于 2012-11-15T12:04:41.897 回答