「メッセージが送信されました!」と表示されたので、私のスクリプトは機能しました。しかし、指定された電子メールに電子メールが受信されませんでした。ところでXAMPPを使用しています。助けに感謝します。ありがとうございました。
<?php
$to = 'theaccount@yahoo.com';
$subject = 'Sample Subject';
$message = 'Hi. This is a sample message.';
$headers = 'From: webmaster@august.ai.com' . "\r\n" .
'Reply-To: no-reply@august.ai.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
echo (mail($to, $subject, $message, $headers)) ? 'Message sent!' : 'Message not sent!';
?>
これが私のphp.iniとsendmail.iniからの情報です:
php.ini :
[mail function]
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
; SMTP = theaccount@yahoo.com
; smtp_port = 25
sendmail.ini :
smtp_server=smtp.mail.yahoo.com
; smtp port (normally 25)
smtp_port=25
auth_username=theaccount+yahoo.com
auth_password=passwordhere