<form action="enquiry.php" method="post" target="_blank"> <div class="input-field"> <input type="text" name="name" placeholder="Your Name" required=""> </div> <div class="input-field"> <input type="email" name="email" placeholder="Your Email" required=""> </div> <div class="input-field message"> <textarea name="message" placeholder="Your Message" required=""></textarea> </div> <input type="submit" value="SEND MESSAGE" id="msg-submit"> </form>
<?php $to = "[email protected], [email protected]"; $subject = "FYI: Contact From xxx"; $message = " <html> <head> <title>Contact From xxx</title> </head> <body> <p>Contact From </p> <table width=100% height=100% border=1> <tr> <td width=20%>Customer Name : </td> <td width=80%>$_POST[name]</td> </tr> <tr> <td width=20%>Message : </td> <td width=80%>$_POST[message]</td> </tr> </table> </body> </html> "; // Always set content-type when sending HTML email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; // More headers $headers .= 'From: '.$_POST["email"] . "\r\n"; //$headers .= 'Cc: [email protected]' . "\r\n"; mail($to,$subject,$message,$headers); ?> <script language="JavaScript"> alert("Your Message send to our completed. We will contact you in 24 hours.!"); window.opener.location.reload(); window.close(); </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง