这是我在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中设置汞以发送邮件。
答案 0 :(得分:0)
首先,您需要正确配置php.ini
和sendmail.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
重新启动服务器后。