我已经完成了设置,sendmail.ini
因此php.ini
我可以使用 gmail 发送电子邮件。收件人是我的hotmail。当我打开我的 hotmail 时,我的 gmail 没有收到任何内容。任何人都可以帮助我吗?下面是我的php代码:
<?php
$to = 'kill_stealer90@hotmail.com';
$subject = 'hello';
$message = 'why i so pro';
$headers = 'From:jackychickenchan@gmail.com';
if (mail($to,$subject,$message,$headers)){
echo("<p>sent</p>");
}else{
echo("<p>failed</p>");
}
?>
这是我的 sendmail.ini 设置
smtp_server=smtp.gmail.com
; smtp port (normally 25)
smtp_port=465
smtp_ssl=auto
auth_username=jackylonelyboy+gmail.com
auth_password=nemesis90
这是我的 php.ini 设置
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
; SMTP = smtp.gmail.com
; smtp_port = 465