可它是一个愚蠢的问题,但我找不到为什么PHP的邮件功能不工作我有一个nginx的服务器在Debian挤压的原因,我最近搬到了它。 我想简单的邮件执行,但它返回false。
if(mail('test@email.com', 'test-subject', 'test-text-blablabla'))
echo 'ok';
else
echo 'bad';
我可以用它做什么?
谢谢。
php.ini中的我的邮件部分:
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =
; 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 = On
; The path to a log file that will log all mail() calls. Log entries include
; the full path of the script, line number, To address and headers.
;mail.log =