ZZ:解決windows系統下php.ini郵件配置正確不發送郵件的問題
php mail()函數在windows不能用,需要安裝sendmail,假如是用的XAMPP,則已經下載好,不需要重新下載~
1.從http://glob.com.au/sendmail/下載sendmail.zip
2.解壓到C:下,例如C:\php\sendmail,最好短路徑,長路徑名有可能產生問題。
3.修改php.ini如下
sendmail_path = "C:\wamp\sendmail\sendmail.exe -t"
4.根據你自己的配置環境修改sendmail.ini。
第一次最好啟用debug.log_file,error_logfile,以查看sendmail是否生效。
5.重啟apache
用sendmail結合其它的smtp服務器,如smtp.163.com來實現發郵件。現在大部分郵箱都要求smtp驗證,所以要在sendmail.ini中加入用戶名和密碼。
php.ini配置:就配置三項,smtp、smtp_port和sendmail_path (以用163郵箱為例)
[mail function] ; For Win32 only. SMTP = smtp.163.com smtp_port = 25 ; For Win32 only. sendmail_from = 4u4v@163.com ; For Unix only. You may supply arguments as well (default: “sendmail -t -i”). sendmail_path = “D:\xampp\sendmail\sendmail.exe -t”
注意:在php.ini中,有些配置前面原先是加了分號的,要去掉!
sendmail.ini配置 :
[sendmail] ; you must change mail.mydomain.com to your smtp server smtp_server=smtp.163.com smtp_port=25 auth_username=yourusername auth_password=yourpassword force_sender=yourusername@163.com
這樣配置完成以后,就可以使用mail函數了~~~
