Windows ベースの Web サーバーを作成しようとしています。以下がインストールされています-
1) アパッチ 2.2.22
2) PHP 5.3.5
3) MySQL 5.5
しかし、私はいくつかのトラブルに巻き込まれています。問題は、Web サーバーで実行されているアプリケーションによって生成された電子メールをサーバーが送信していないことです。
誰かがこの問題で私を助けることができれば、本当に感謝しています.
<?php
phpini_set("sendmail_from", "info@example.com");
$to = 'abc@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>