home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Templates / Flash / flashmo_118_fashion_gallery / send_email_auto_response.php < prev    next >
PHP Script  |  2008-07-22  |  1KB  |  30 lines

  1. <?php
  2. $contact_name = $_POST['name'];
  3. $contact_email = $_POST['email'];
  4. $contact_subject = $_POST['subject'];
  5. $contact_message = $_POST['message'];
  6.  
  7. if( $contact_name == true )
  8. {
  9.     $sender = $contact_email;
  10.     $receiver = "info@flashmo.com";
  11.     $client_ip = $_SERVER['REMOTE_ADDR'];
  12.     
  13.     $email_body = "Name: $contact_name \nEmail: $sender \nSubject: $contact_subject \nMessage: $contact_message \nIP: $client_ip \nFlash Contact Form provided by http://www.flashmo.com";
  14.     $email_body_auto_reply = "Hello $contact_name, \nThis is the auto reply message. Thank you. \nAdmin - http://www.flashmo.com";
  15.     
  16.     $extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion();
  17.     $extra_auto_reply = "From: $receiver\r\n" . "Reply-To: $receiver \r\n" . "X-Mailer: PHP/" . phpversion();
  18.     
  19.     mail( $sender, "Auto Reply - Re: $contact_subject", $email_body_auto_reply, $extra_auto_reply );    // auto reply mail to sender
  20.  
  21.     if( mail( $receiver, "Flash Contact Form - $contact_subject", $email_body, $extra ) )
  22.     {
  23.         echo "success=yes";
  24.     }
  25.     else
  26.     {
  27.         echo "success=no";
  28.     }
  29. }
  30. ?>