|
I'm no PHP master but I would say that you are trying to call a function that has either not been declared or that the particualr page does not reference the php file that contains the function.
whatever file contains the function mail should be added to the top of email.php as:
[php]
<?php
include_once ("file.php"); //replace file.php with file containing the mail function
?>
You may also want to post your code if this doesn't help.
|