Konuyla ilgili yardımcı olur musunuz? Özgeçmiş olarak kullandığım temadaki iletişim formuna ait dosyada neyi yanlış yaptım?


$to = "iletisim@...com";
$from = $_REQUEST['email'];
$name = $_REQUEST['name'];
$headers = "From: $from";
$subject = "You have a message.";

$fields = array();
$fields{"name"} = "adsoyad";
$fields{"email"} = "eposta";
$fields{"phone"} = "telefon";
$fields{"message"} = "mesaj";



$body = "Here is what was sent:\r\n";

foreach($fields as $a => $b){$body .= $b." : ".$_REQUEST[$a]."\r\n"; }


$send = mail($to, $subject, $body, $headers);

?>