Hello. I am building a Flash form and using php to send the email out. I've been having issues. I've broken it down to the "purest" php and it is still not working.
<?php
mail("mo_rgan@hotmail.com", "test", "test massege", "mfebrey@comcast.net");
if(mail("mo_rgan@hotmail.com", "test", "test massege", "FROM:mfebrey@comcast.net")) {
echo "An e-mail was sent";
} else {
echo "There was a problem sending the mail.";
}
?>
I can not figure out why this isn't working. Any ideas?
Thanks,
1M.