0
警告:メール(/home/u295560656/.logs/php_mail.log):ストリームを開けませんでした:/home/u295560656/public_html/2.php 9行目のファイルやディレクトリがありません テストメールが送信されましたCan not Mail。警告を表示するPHPメール()
このエラーは何についてですか?以前は私はメールを送ることができましたが、Hostingerのサービスをホストしていませんでした。
これは私のコードです:
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
$from = "[email protected]";
$to = "[email protected]";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";
?>