Advertisement
Cavitt

Untitled

Mar 23rd, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. // Details
  4. $message = $_REQUEST['detail'];
  5.  
  6. // From
  7. $header="from: ".$_REQUEST['name']." <".$_REQUEST['customer_mail'].">";
  8.  
  9. // Enter your email address
  10.  
  11. $send_contact = mail($to, $header, $message, $header);
  12.  
  13. // Check, if message sent to your email
  14. if($send_contact){
  15.     echo "We've received your contact information";
  16. }
  17. else {
  18.     echo "ERROR";
  19. }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement