2014-02-08 54 views
0

發送電子郵件這裏是我的PHP代碼發送電子郵件:如何使用XAMMP

<?php 
    $to = '[email protected]'; 
    $subject = 'Customer_Details Report'; 
    $msg="some message"; 

    if($result) 
    { 
     echo 'your email has been sent'; 
    } 
    else 
    { 
     echo'email not sent'; 
    } 
?> 

如何設置汞XAMPP來發送郵件。

回答

0

首先,您需要正確配置php.inisendmail.ini文件。

sendmail.ini文件應包含

first smtp_server=mail.gmail.com , 
second smtp_port=465 (if not worked try 587), 
third auth_username= [email protected] auth_password=yourpassword 

在此之後重新啓動服務器。