<form action="testmail5.php" id="contact-form" class="form" method="post"> <ul> <li> <p><strong>Name</strong> <em>(*)</em></p> <input name="name" type="text" class="requiredField" /> </li> <li> <p><strong>E-mail</strong> <em>(*)</em></p> <input name="email" type="text" class="requiredField email" /> </li> <li> <p><strong>URL</strong> <em>(Optional)</em></p> <input name="url" type="text" /> </li> <li> <p><strong>Message</strong> <em>(*)</em></p> <textarea name="message" rows="20" cols="30" class="requiredField"></textarea> </li> <li class="submit-button"> <input name="submit" id="submitted" value="Send Message" class="submit" type="submit" /> </li> </ul> </form><!--END CONTACT FORM-->
<?php if($_POST) { include "PHPMaile/class.phpmailer.php"; $mail = new PHPMailer(); $mail->IsHTML(true); $mail->IsSMTP(); $mail->SMTPAuth = true; // enable SMTP authentication $mail->SMTPSecure = "ssl"; // sets the prefix to the servier $mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "*******r@*******.com"; // GMAIL username $mail->Password = "*******"; // GMAIL password $mail->From = "[email protected]"; // "[email protected]"; $mail->FromName = "piranon.com"; // set from Name $mail->AddAddress('**************@yahoo.com'); // to Address $mail->WorldWrap=70; $mail->CharSet="utf-8"; $mail->IsHTML(true); //protect magic quotes if(get_magic_quotes_qpc()) { foreach($_POST as $key => $value) { $_POST[$key] = stripslashes ($value); } } $mail->Name = $_POST['name']; $mail->Email = $_POST['email']; $mail->Url = $_POST['url']; $mail->Message =$_POST['message']); $mail->Send(); } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง