Ok.. I posted a thread earlier about not being able to get some form input from flash to send out thru a simple mail() script. I managed to fix that. However, I'm back to my real problem. I can't get the mail() to send mail using this script on my dedicated server2003 machine:
<?php
mail("me@myEmail.com", $_POST['subject'], $_POST['message'], "From: PHPMailer\nReply-To: " . $_POST['from'] . "\nX-Mailer: PHP/" . phpversion());
?>
But it will send me mail when I use a simple test script:
<?php
mail("me@myEmail.com", "test message", "test message", "From: webserver@yoursite.com");
print "MAIL SENT";
?>
😕
All works fine on my shared hosting server. So I'm at a real loss here. And need a solution pretty quik.