<?php
$to = "[email protected]";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]";
mail($to,$subject,$txt,$headers);
var_dump($mail);
?>
我正试图发送邮件。它不起作用我不知道为什么。我也没有收到任何错误。我没有收到任何邮件。我也尝试了不同的电子邮件地址..我应该编辑 lampp/xampp 中的任何文件吗?
var_dump
总是会回来bool(false)
我改变了一些代码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 = [email protected]
; 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
; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log =
虽然我也有同样的问题
答案1
为了使用 php 邮件功能,您需要一些后端工作,即正确配置 SMTP 服务。您需要检查 php.ini 中[邮件功能]部分的相关配置,并将其设置为能够访问上述正确配置的 SMTP 服务。
由于默认值为 localhost,如果您没有在 localhost 上设置 SMTP 或者没有配置将邮件转发到 Internet,您的 PHP 邮件功能将无法工作。