0

谁能帮我?我被 PHPmail()函数困住了,我已经设置了php.inisendmail.ini. 我只是使用功能mail($to,$subject,$content)并没有工作。我正在使用本地主机 XAMPP。

这个php.ini文件:

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.mail.yahoo.com
; http://php.net/smtp-port
smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = jesus4way@yahoo.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = Off

; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log = "C:\xampp\apache\logs\php_mail.log"
4

1 回答 1

0

检查服务器状态

  • 从 XAMPP 控制面板启动 Mercury Mail Server。检查状态是否为Running.
  • 打开 Mercury 控制面板(从 XAMPP 面板或任务栏)并检查 SMTP 服务器状态是否为Ready.
  • 从 Mercury 控制面板发送邮件到您自己的电子邮件地址,并检查它是否失败。

PHP

允许错误报告:error_reporting(E_ALL);并检查 PHP 错误和警告。

尝试将标题信息添加到您的mail()函数中:

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
于 2013-02-15T08:22:11.880 回答