gmailでメール送信できるようにsendmail.ini
andで設定しました。php.ini
受信者は私の 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