<? // Import PHPMailer classes into the global namespace // These must be at the top of your script, not inside a function use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; use PHPMailer\PHPMailer\Exception; // Load Composer's autoloader require 'vendor/phpmailer/phpmailer/src/Exception.php'; require 'vendor/phpmailer/phpmailer/src/PHPMailer.php'; require 'vendor/phpmailer/phpmailer/src/SMTP.php'; require 'vendor/autoload.php'; $custemail = $_POST['email']; // อีเมล์ของผู้ติดต่อที่กรอกผ่านแบบฟอร์ม $subj = $_POST['subject']; /* ------------------------------------------------------------------------------------------------------------- */ $message.= "ชื่อ-นามสกุล: ".$_POST['name']."\n"; $message.= "อีเมล์: ".$_POST['email']."\n"; $message.= "หัวข้อ: ".$_POST['subject']."\n"; $message.= "รายละเอียด: ".$_POST['details']."\n"; /* ------------------------------------------------------------------------------------------------------------- */ /* หากต้องการรับข้อมูลจาก Form แบบไม่ระบุชื่อตัวแปร สามารถรับข้อมูลได้ไม่จำกัด ให้ลบบรรทัด 11-14 แล้วใช้ 19-22 แทน foreach ($_POST as $key => $value) { //echo "Field ".htmlspecialchars($key)." is ".htmlspecialchars($value)."<br>"; $message.= "Field ".htmlspecialchars($key)." = ".htmlspecialchars($value)."\n"; } */ $mesg = $message; $mail = new PHPMailer(); $mail->CharSet = "utf-8"; /* ------------------------------------------------------------------------------------------------------------- */ /* ตั้งค่าการส่งอีเมล์ โดยใช้ SMTP ของ โฮสต์ */ $mail->IsSMTP(); $mail->Mailer = "smtp"; $mail->SMTPAuth = true; $mail->SMTPSecure = 'tls'; // บรรทัดนี้ ให้ Uncomment ไว้ เพราะ Mail Server ของโฮสต์ ไม่รองรับ SSL. $mail->Host = "smtp.xxxxx.com"; //ใส่ SMTP Mail Server ของท่าน $mail->Port = "587"; // หมายเลข Port สำหรับส่งอีเมล์ $mail->Username = "[email protected]"; //ใส่ Email Username ของท่าน (ที่ Add ไว้แล้วใน Plesk Control Panel) $mail->Password = "123456"; //ใส่ Password ของอีเมล์ (รหัสผ่านของอีเมล์ที่ท่านตั้งไว้) /* ------------------------------------------------------------------------------------------------------------- */ $mail->setFrom('[email protected]', 'heng'); $mail->AddAddress($custemail); $mail->Subject = $subj; $mail->Body = $mesg; $mail->WordWrap = 50; // if(!$mail->Send()) { echo 'Message was not sent.'; echo 'ยังไม่สามารถส่งเมลล์ได้ในขณะนี้ ' . $mail->ErrorInfo; exit; } else { echo 'ส่งเมลล์สำเร็จ'; } ?>
$recips = array( '[email protected]' => 'K.Genesis', '[email protected]' => 'K.Laravel', ); foreach($recips as $email => $name) { $mail->AddCC($email, $name); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง