Hello,
I am having trouble trying to figure out why my friend’s flash email form is not working. I have tried some of everything to try to get the email form to work and I have yet to succeed. One problem that I have encountered is the fact I do not have the original flash file to assist myself with. Is it possible that anyone is able to help me in figuring out what is wrong by just viewing the php code alone? Any help is appreciated. Thank you very much!
The php code is as follows:
[php]
<?php $ToEmail = "[email protected]"; $ToSubject = "Email from Kelzworld Site"; $EmailBody = "Sent By: $FirstName\nSenders Email: $Email\nPhone: $Phone\nBudget: $Budget\nEvent: $Event\nAttend: $Attend\nVenue: $Venue\n\nComments:\n$ToComments\n"; mail($ToName." <".$ToEmail.">",$ToSubject, $EmailBody, "From: ".$FirstName." <".$Email.">"); ?>[/php]