This code is being called from a flash form. It doesn't work on this server, but it works on a different server, how come? Please help, thanks.
PHP Code:<?php
$to = "myemail@myserver.com";
$msg = "Name: $name\n\n";
$msg .= "Email: $email\n\n";
$msg .= "Phone: $phone\n\n";
$msg .= "Location: $location\n\n";
$msg .= "Comment:\n $message\n\n";
mail($to, $subject, $msg, "From: $email\nReply-To: $email\n");
?>


