PHP 在windows下配置sendmail,通過 mail() 函數發送郵件

來源:互聯網
上載者:User

標籤:

php mail()函數在windows不能用,需要安裝sendmail。

1. 從http://glob.com.au下載sendmail.zip

2. 解壓sendmail.zip到目錄下(最好使用短路徑,長路徑會導致問題的出現),我安裝的路徑是: C:\sendmail

3.修改php.ini 配置,我是使用的QQ郵箱發送郵件。配置如下所示:

 

4.修改 sendmail.ini,檔案路徑:C:\sendmail\sendmail.ini

smtp_server=smtp.qq.comsmtp_port=25auth_username=自己的郵箱帳號auth_password=密碼force_sender=自己的郵箱帳號

下面這兩項最好開啟,方便查看那裡出問題了
; log smtp errors to error.log (defaults to same directory as sendmail.exe); uncomment to enable loggingerror_logfile=error.log; create debug log as debug.log (defaults to same directory as sendmail.exe); uncomment to enable debuggingdebug_logfile=debug.log
5.測試發送郵件功能
<?phpheader("Content-type:text/html;charset=utf-8");if(mail("[email protected]","測試","測試郵件")){  //[email protected]為收件者郵箱    echo "發送成功!!";}else{    echo "發送失敗!!";}?>


PHP 在windows下配置sendmail,通過 mail() 函數發送郵件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.