Ben PHP mail kullanarak e-posta göndermek için çalışıyorum. Ben şu hatayı alıyorum:
Warning: Unknown: failed to open stream: satır 0 Bilinmeyen reddedildi İzni
Ölümcül hata: Bilinmeyen: satır 0 Bilinmeyen in '/ home / webtest / help / ask_us.php' (include_pathdaki = '. :/ Usr / share / php :/ usr / share / pear') gerekli Başarısız açılış
Aşağıdaki gibi PHP kodu:
<?php
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail( "myemail@myhost.com", "Subject header",
$message, "From: $email" );
header( "Location: http://www.google.com" );
?>