0

有没有办法可以为 PHP 配置 xampp 服务器以启用 mail() 功能。如果没有,那么我可以安装一个本地邮件服务器来测试 PHP 的 mail() 功能吗?

4

1 回答 1

0

在 php.ini 上

; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
;sendmail_path = "\"G:\xampp\sendmail\sendmail.exe\" -t"

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the G:\xampp\mailoutput folder
sendmail_path="G:\xampp\mailtodisk\mailtodisk.exe"

只需取消注释第一个 sendmail_path 并注释 mailToDisk 选项。

于 2014-03-14T21:22:13.677 回答