Como tendria que modificarlo?
Aca el codigo
Código PHP :
<?php
$to = "";
$from = $_REQUEST['name'];
$subject = $_REQUEST['subject'];
$name = $_REQUEST['name'];
$headers = "From: $from";
$fields = array();
$fields{"name"} = "name";
$fields{"email"} = "email";
$fields{"subject"} = "subject";
$fields{"message"} = "message";
$body = "Here is what was sent:\n\n"; foreach($fields as $a => $b){ $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); }
$send = mail($to, $subject, $body, $headers);
?> 