Nope. I have modified it to echo the values but nothing gets echoed.
<?php
$name = $_GET['name'];
$email = $_GET['email'];
$notes = $_GET['notes'];
echo $email;
echo $name;
mail("np50@dial.pipex.com","New Media Buys Enquiry","
Name: $name
Email: $email
Notes: $notes
","From: $email");
?>
On the form I have this:
<form name="form1" method="post" action="submitted.php">
Is that correct? Any ideas?