如何解决“无法连接到”localhost“端口25”的邮件服务器“

时间:2012-02-03 12:13:24

标签: php mysqli

为什么会出现这个错误? 我没有在程序中使用email()函数 this is the screen shot of the error report i am getting

它在这一行给出错误

mysqli_close($dbc);

this is the screen shot of the program, i have Not called mail() function

1 个答案:

答案 0 :(得分:0)

是的..alexn是对的。你正在查看错误的文件。

用于设置邮件连接:

您必须在php.ini中激活邮件功能。

您不必使用总公牛的MTA(邮件传输代理)..

只需修复你的php.ini文件:

[mail function]
; For Win32 only.
SMTP = mysmtpserver.com
smtp_port = 25

; For Win32 only.
sendmail_from = email@myemail.com
希望它会对你有所帮助。