Advertisement
KHIT

send_contact.php

Dec 30th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. // Contact subject
  3. $subject ="$subject";
  4. // Details
  5. $message="$detail";
  6.  
  7. // Mail of sender
  8. $mail_from="$customer_mail";
  9. // From
  10. $header="from: $name <$mail_from>";
  11.  
  12. // Enter your email address
  13. $to ="$til";
  14.  
  15. $send_contact=mail($to,$subject,$message,$header);
  16.  
  17. // Check, if message sent to your email
  18. // display message "We've recived your information"
  19. if($send_contact){
  20. echo "Tak for din mail. Vi bestræber at besvare den indenfor 24 timer.";
  21. }
  22. else {
  23. echo "Der er opstået en fejl.";
  24. }
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement