good question. what does front page do? does it email somebody? i have a feeling it might be, .. so if it does, .. you can just get rid of the front page crap and add your own mail functionality.
it would go something like this:
PHP Code:
<?
if($_POST){
$message = "
Message Type: ".$_POST[MessageType]."
Subject: ".$_POST[Subject]."
Subject Other: ".$_POST[SubjectOther]."
Comments: ".$_POST[Comments]."
Username: ".$_POST[Username]."
Email: ".$_POST[UserEmail]."
Telephone: ".$_POST[UserTel]."
Fax: ".$_POST[UserFAX]."
".(($_POST[ContactRequested)?" Please Contact Me":"")."
$headers="From: [email]messages@comicgradinggroup.com[/email]";
mail("admin@comicgradinggroup.com","New CGG Message",$message,$headers);
}
?>
ignore the [ email][/ email] tags in the $headers line. the forum is putting those in.