1. <?php
  2. $to = "YOUR EMAIL"; //Place your email address here//
  3. $subject = "Profile Submission";
  4. $username = $_REQUEST['username'] ; //Change form names to the following. Make new forms and add by using the same format REQUEST code//
  5. $email = $_REQUEST['email'] ;
  6. $message = $_REQUEST['message'] ;
  7. $type = $_REQUEST['type'] ;
  8. $css = $_REQUEST['css'] ;
  9. $thumb = $_REQUEST['thumb'] ;
  10. $headers = "From: $email";
  11. $sent = mail($to, $subject, $message, $headers) ;
  12. if($sent) {print "Your profile was submitted successfully"; }
  13. else {print "We encountered an error while submitting your profile"; }
  14. ?>