0

这是我在 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 中设置水星来发送邮件。

4

1 回答 1

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

在此之后重新启动您的服务器。

于 2014-02-08T07:15:46.677 回答