利用Java發送郵件示例:java
一、發送QQ郵件安全
1 import java.util.Properties; 2 import javax.mail.Message; 3 import javax.mail.MessagingException; 4 import javax.mail.Session; 5 import javax.mail.Transport; 6 import javax.mail.internet.AddressException; 7 import javax.mail.internet.InternetAddress; 8 import javax.mail.internet.MimeMessage; 9 10 public class SendQQMailUtil { 11 12 public static void main(String[] args) throws AddressException,MessagingException { 13 Properties properties = new Properties(); 14 properties.put("mail.transport.protocol", "smtp");// 鏈接協議 15 properties.put("mail.smtp.host", "smtp.qq.com");// 主機名 16 properties.put("mail.smtp.port", 465);// 端口號 17 properties.put("mail.smtp.auth", "true"); 18 properties.put("mail.smtp.ssl.enable", "true");// 設置是否使用ssl安全鏈接 ---通常都使用 19 properties.put("mail.debug", "true");// 設置是否顯示debug信息 true 會在控制檯顯示相關信息 20 // 獲得回話對象 21 Session session = Session.getInstance(properties); 22 // 獲取郵件對象 23 Message message = new MimeMessage(session); 24 // 設置發件人郵箱地址 25 message.setFrom(new InternetAddress("xxx@qq.com")); 26 // 設置收件人郵箱地址 27 message.setRecipients(Message.RecipientType.TO, new InternetAddress[]{new InternetAddress("xxx@qq.com"),new InternetAddress("xxx@qq.com"),new InternetAddress("xxx@qq.com")}); 28 //message.setRecipient(Message.RecipientType.TO, new InternetAddress("xxx@qq.com"));//一個收件人 29 // 設置郵件標題 30 message.setSubject("xmqtest"); 31 // 設置郵件內容 32 message.setText("郵件內容郵件內容郵件內容xmqtest"); 33 // 獲得郵差對象 34 Transport transport = session.getTransport(); 35 // 鏈接本身的郵箱帳戶 36 transport.connect("xxx@qq.com", "xxxxxxxxxxxxx");// 密碼爲QQ郵箱開通的stmp服務後獲得的客戶端受權碼 37 // 發送郵件 38 transport.sendMessage(message, message.getAllRecipients()); 39 transport.close(); 40 } 41 }
二、發送163郵箱服務器
1 import java.io.IOException; 2 import java.util.*; 3 4 import javax.mail.*; 5 import javax.mail.internet.*; 6 import javax.activation.*; 7 8 public class SendMailUtil { 9 10 static String HOST = ""; // smtp服務器 11 static String FROM = ""; // 發件人地址 12 static String TO = ""; // 收件人地址 13 static String AFFIX = ""; // 附件地址 14 static String AFFIXNAME = ""; // 附件名稱 15 static String USER = ""; // 用戶名 16 static String PWD = ""; // 163的受權碼 17 static String SUBJECT = ""; // 郵件標題 18 static String[] TOS = null; 19 20 static { 21 try { 22 Properties props = new Properties(); 23 props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("config.properties"));//從自定義配置文件獲取相關參數 24 HOST=props.getProperty("host"); 25 FROM=props.getProperty("from"); 26 TO=props.getProperty("to"); 27 TOS=TO.split(","); 28 AFFIX=props.getProperty("affix"); 29 AFFIXNAME=props.getProperty("affixName"); 30 USER=props.getProperty("user"); 31 PWD=props.getProperty("pwd"); 32 SUBJECT=props.getProperty("subject"); 33 } catch (IOException e) { 34 e.printStackTrace(); 35 } 36 } 37 38 /** 39 * 發送郵件 40 * @param host 41 * @param user 42 * @param pwd 43 */ 44 public static void send(String context) { 45 Properties props = new Properties(); 46 props.put("mail.smtp.host", HOST);//設置發送郵件的郵件服務器的屬性(這裏使用網易的smtp服務器) 47 props.put("mail.smtp.auth", "true"); //須要通過受權,也就是有戶名和密碼的校驗,這樣才能經過驗證(必定要有這一條) 48 Session session = Session.getDefaultInstance(props);//用props對象構建一個session 49 session.setDebug(true); 50 MimeMessage message = new MimeMessage(session);//用session爲參數定義消息對象 51 try { 52 message.setFrom(new InternetAddress(FROM));// 加載發件人地址 53 InternetAddress[] sendTo = new InternetAddress[TOS.length]; // 加載收件人地址 54 for (int i = 0; i < TOS.length; i++) { 55 sendTo[i] = new InternetAddress(TOS[i]); 56 } 57 message.addRecipients(Message.RecipientType.TO,sendTo); 58 message.addRecipients(MimeMessage.RecipientType.CC, InternetAddress.parse(FROM));//設置在發送給收信人以前給本身(發送方)抄送一份,否則會被當成垃圾郵件,報554錯 59 message.setSubject(SUBJECT);//加載標題 60 Multipart multipart = new MimeMultipart();//向multipart對象中添加郵件的各個部份內容,包括文本內容和附件 61 BodyPart contentPart = new MimeBodyPart();//設置郵件的文本內容 62 contentPart.setText(context); 63 multipart.addBodyPart(contentPart); 64 if(!AFFIX.isEmpty()){//添加附件 65 BodyPart messageBodyPart = new MimeBodyPart(); 66 DataSource source = new FileDataSource(AFFIX); 67 messageBodyPart.setDataHandler(new DataHandler(source));//添加附件的內容 68 sun.misc.BASE64Encoder enc = new sun.misc.BASE64Encoder();//添加附件的標題 69 messageBodyPart.setFileName("=?GBK?B?"+ enc.encode(AFFIXNAME.getBytes()) + "?="); 70 multipart.addBodyPart(messageBodyPart); 71 } 72 message.setContent(multipart);//將multipart對象放到message中 73 message.saveChanges(); //保存郵件 74 Transport transport = session.getTransport("smtp");//發送郵件 75 transport.connect(HOST, USER, PWD);//鏈接服務器的郵箱 76 transport.sendMessage(message, message.getAllRecipients());//把郵件發送出去 77 transport.close();//關閉鏈接 78 } catch (Exception e) { 79 e.printStackTrace(); 80 } 81 } 82 83 84 // public static void main(String[] args) { 85 // send("內容"); 86 // } 87 88 }
三、關於郵箱服務受權配置自行參考官方文檔。session
如163郵箱設置:spa