我正在尝试为我的家庭作业/练习目的开发一个基本的 PHP 邮件应用程序。这就是为什么我在我的本地开发环境(XAMPP)上工作。我的 php.ini 代码:[mail function]SMTP=mail.example.comsmtp_port=587sendmail_from = info@example.comsendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"我的 sendmail.ini 代码[sendmail]smtp_server=mail.example.comsmtp_port=587error_logfile=error.logdebug_logfile=debug.logauth_username=info@example.comauth_password=*********force_sender=info@example.com我用于发送电子邮件的 PHP 代码:$to = 'example@gmail.com';$subject = 'the subject';$message = 'hello';$headers = array( 'From' => 'webmaster@example.com', 'Reply-To' => 'webmaster@example.com', 'X-Mailer' => 'PHP/' . phpversion());mail($to, $subject, $message, $headers);从本地主机发送邮件时出现以下错误。sendmail: Error during delivery: Reply Code is not valid: ecur 有没有其他人遇到过这个问题?可能的解决方案是什么?
添加回答
举报
0/150
提交
取消