PHP 用に xampp サーバーを構成して、mail() 関数を有効にする方法はありますか。そうでない場合、PHP の mail() 機能をテストするためにインストールできるローカル メール サーバーはありますか?
質問する
1813 次
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 に答える