0

我花了很多时间,但未能通过 localhost 发送邮件。我阅读了很多博客并按照他们的建议进行了尝试,但我无法解决我的问题。那么我能做些什么来解决这个问题。我也尝试过像 sendmail、phpmailer 等第三方......我的 php.ini 文件配置是:

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.gmail.com
; http://php.net/smtp-port
smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = ******224401@gmail.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path ="C:\wamp\sendmail\sendmail.exe -t -i"

任何想法将不胜感激...thanx提前

4

1 回答 1

1

我认为您需要取消注释此行

;sendmail_path ="C:\wamp\sendmail\sendmail.exe -t -i"

只需删除分号

sendmail_path ="C:\wamp\sendmail\sendmail.exe -t -i"

并重新启动你的 apache

于 2013-04-21T05:48:33.750 回答