| | |
| | | package com.stylefeng.guns.modular.system.util; |
| | | |
| | | import com.sun.mail.smtp.SMTPSSLTransport; |
| | | |
| | | import javax.mail.*; |
| | | import javax.mail.internet.InternetAddress; |
| | | import javax.mail.internet.MimeBodyPart; |
| | |
| | | msg.setContent(mm_text_image); |
| | | //设置邮件的发送时间,默认立即发送 |
| | | msg.setSentDate(new Date()); |
| | | |
| | | Transport.send(msg); |
| | | Transport transport = session.getTransport(); |
| | | transport.connect(); |
| | | transport.sendMessage(msg, msg.getAllRecipients()); |
| | | transport.close(); |
| | | return true; |
| | | } |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | try { |
| | | EmailUtil.send("393733352@qq.com", "验证码", "<html><span style=\"color:red;\">123456</span></html>"); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | } |