如何使用XAMPP发送电子邮件

时间:2014-02-08 07:07:48

标签: php email mercury-mta

这是我在php中发送电子邮件的代码:

<?php
    $to = 'xyz@xyz.com';
    $subject = 'Customer_Details Report';
    $msg="some message";

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

如何在XAMPP中设置汞以发送邮件。

1 个答案:

答案 0 :(得分:0)

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

sendmail.ini文件应包含

first smtp_server=mail.gmail.com ,
second smtp_port=465 (if not worked try 587),
third auth_username= xxx@gmail.com auth_password=yourpassword

重新启动服务器后。