Guest User

Untitled

a guest
Jan 4th, 2018
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $name = $_POST['name'];
  2. $phone = $_POST['phone'];
  3.  
  4.  
  5. $subject = 'חום התיכון - טופס יצירת קשר ';
  6. $headers = "From: $email" . "rn";
  7. $headers .= "MIME-Version: 1.0" . "rn";
  8. $headers .= "Content-type: text/html; charset=utf-8";
  9.  
  10. $replymessage = "<html>
  11. <head>
  12. <meta http-equiv='content-type' content='text/html; charset=utf-8' />
  13. </head>
  14. <body style=' direction: rtl;'>
  15. <div>
  16. <span>שם: </span>
  17. <span>$name</span>
  18. </div>
  19. <br/>
  20. <div>
  21. <span>טלפון: </span>
  22. <span>$phone</span>
  23. </div>
  24. </body>
  25. </html>";
  26.  
  27. mail($to, $subject, $replymessage, $headers);
  28.  
  29. return true;
Add Comment
Please, Sign In to add comment