noreply を使用してメールを送信しようとしていますが、機能しません。何も送信されません。私はこのテストファイルを使用しています:
<?php
$to = 'myemailhere';
$subject = 'You received an email message!';
$message = 'This is a message in the email body form.';
$headers = 'From: noreply@example.com' . "\r\n" .
'Reply-To: noreply@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
何が問題なのですか?ところで、私はrackspackeを使っています。
前もって感謝します!