I've downloaded several Flash contact forms that use a PHP script to send an e-mail but none seem to be working. Here's the gist of the script:
<?
$destination="
myemail@address.com";
$name=$_POST['name'];
$email=$_POST['email'];
$mes=$_POST['comments'];
$subject="Message from $name" ;
$mes="Name : $name\n
Email: $email\n
Comments: $mes\n";
mail($destination,$subject,$mes); ?>
I update the "
myemail@address.com" to the address I want the form to submit to, but I never get the e-mail. Any ideas?