我只是想在我之前使用的php中尝试邮件功能。我格式化了我的系统所以我不得不重新安装xampp并且我的发送邮件代码不能正常工作
<?php
if(mail("mymail@gmail.com","hi","hii")) {
echo 'sent';
} else {
echo 'fail';
}
?>
我对php.ini和sendmail.ini进行了所有更改
sendmail.ini
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=465
smtp_ssl=ssl
default_domain=localhost
error_logfile=error.log
debug_logfile=debug.log
auth_username= mymail@gmail.com
auth_password= mypwd
pop3_server=
pop3_username=
pop3_password=
force_sender= mymail@gmail.com
hostname=localhost
的php.ini
SMTP = smtp.gmail.com
smtp_port = 465
sendmail_from = postmaster@localhost
sendmail_path = "\"E:\xampp\sendmail\sendmail.exe\" -t"
我改变了一切,但仍然无法正常工作。