Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $name = $_POST['name'];
- $phone = $_POST['phone'];
- $to = "[email protected]";
- $subject = 'חום התיכון - טופס יצירת קשר ';
- $headers = "From: $email" . "rn";
- $headers .= "MIME-Version: 1.0" . "rn";
- $headers .= "Content-type: text/html; charset=utf-8";
- $replymessage = "<html>
- <head>
- <meta http-equiv='content-type' content='text/html; charset=utf-8' />
- </head>
- <body style=' direction: rtl;'>
- <div>
- <span>שם: </span>
- <span>$name</span>
- </div>
- <br/>
- <div>
- <span>טלפון: </span>
- <span>$phone</span>
- </div>
- </body>
- </html>";
- mail($to, $subject, $replymessage, $headers);
- return true;
Add Comment
Please, Sign In to add comment