public static void main(String[] args) { final String auth_host = "mail.thaicreate.com"; final String auth_port = "25"; final String auth_email = "[email protected]"; final String auth_password = "password"; Properties props = new Properties(); props.put("mail.smtp.host", auth_host); props.put("mail.smtp.socketFactory.port", auth_port); props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory"); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.port", auth_port); try { Session mailSession = Session.getInstance(props, new javax.mail.Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication (auth_email,auth_password); } }); Message message = new MimeMessage(mailSession); message.setFrom(new InternetAddress(auth_email)); // From /*** Recipient ***/ message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("[email protected]")); // To message.setSubject("Test sending mail from Java"); message.setText("Hello mr.win, Please do not reply this mail"); Transport.send(message); System.out.println("Mail Send Successfully."); } catch (MessagingException e) { throw new RuntimeException(e); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง