View Single Post
Old 06-30-2004, 06:13 AM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
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.
__________________
Mike
sde is offline   Reply With Quote