The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Just wondering if anyone can help. I am using a php script to send emails from my flash movie (www.grovesphoto.com). I have one where people can send the site address to a friend and that works fine. So any idea why the simpler email (contact) section is not working? Is it a cockup in my code or restrictions by Freeola?
Thanks in advance, the script is shown below...
P.
___________________
// Build up email header fields
$mailFrom = "From: $senderName <$senderEmail>";
$mailTo = "Phil
// Send email
mail($mailTo, $mailSubject, $mailMessage, $mailFrom);
// Create response
$response = "Thank you $senderName, nnYour message has been sent to $mailTo.";
// Respond to flash movie
print "&result=Okay&response=$response&";
?>
Also, change the permision settings to 777.
See if that does it!!!
Just wondering if anyone can help. I am using a php script to send emails from my flash movie (www.grovesphoto.com). I have one where people can send the site address to a friend and that works fine. So any idea why the simpler email (contact) section is not working? Is it a cockup in my code or restrictions by Freeola?
Thanks in advance, the script is shown below...
P.
___________________
// Build up email header fields
$mailFrom = "From: $senderName <$senderEmail>";
$mailTo = "Phil
// Send email
mail($mailTo, $mailSubject, $mailMessage, $mailFrom);
// Create response
$response = "Thank you $senderName, nnYour message has been sent to $mailTo.";
// Respond to flash movie
print "&result=Okay&response=$response&";
?>