Guest User

Untitled

a guest
Jun 21st, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <!--
  2. <?php
  3. $text = "Information Below:\n\nFull Name: " .$_POST['fullname']. "\nCounty: " .$_POST['county']. " \nApproximate House Value: " .$_POST['approxhomevalue']. "\nYoungest Person on Deed Date of Birth: "
  4. .$_POST['dob']. "\nTotal Current Balance of Any Mortgages, equityies or liens against your property: " .$_POST['currbalance']. "\nEmail: "
  5. .$_POST['email']. "\nTelephone: " .
  6. $_POST['telephone']. "\nU.S. Mail: "
  7. .$_POST['snail']. "\nAddress: "
  8. .$_POST['adress']. " "
  9. .$_POST['location']. "\nQuestions: "
  10. .$_POST['questions'];
  11. if(mail('kamronmalik@gmail.com',"Contact Information from the Contact Us Page",$text)){
  12. print "<p>**You have succesfully sent an e-mail to us and we will respond to you shortly, please wait and you will be redirected automatically to the How Much is Available Page or click another link to browse our website.</p>";}
  13. ?>
  14. -->
  15.  
  16. <?php
  17. $text = "Information Below:\n\nFull Name: " .$_POST['fullname']. "\nCounty: " .$_POST['county']. " \nApproximate House Value: " .$_POST['approxhomevalue']. "\nYoungest Person on Deed Date of Birth: "
  18. .$_POST['dob']. "\nTotal Current Balance of Any Mortgages, equityies or liens against your property: " .$_POST['currbalance'].
  19. if (isset($_POST['email']))
  20. {
  21. "\nEmail: " .$_POST['email'].;
  22. }
  23. elseif (isset($_POST['telephone']))
  24. {
  25. "\nTelephone: " .$_POST['telephone'].;
  26. }
  27. elseif isset($_POST['mailaddress'])
  28. {
  29. "\nU.S. Mail: " .$_POST['snail']. "\nAddress: " .$_POST['adress'].;
  30. }
  31. "\nQuestions: " .$_POST['questions'];
  32. if(mail('kamronmalik@gmail.com',"Contact Information from the Contact Us Page",$text)){
  33. print "<p>**You have succesfully sent an e-mail to us and we will respond to you shortly, please wait and you will be redirected automatically to the How Much is Available Page or click another link to browse our website.</p>";}
  34. ?>
Add Comment
Please, Sign In to add comment