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