今天在研究javamail發(fā)信的過程中,出現(xiàn)了一些小問題,現(xiàn)總結(jié)如下,以免后來者走些不必要的彎路,先把完整的能夠正常運(yùn)行的代碼示例粘貼如下:
發(fā)郵件源代碼:
import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class MailExample { public static void main (String args[]) throws Exception { String host = "smtp.163.com"; //發(fā)件人使用發(fā)郵件的電子信箱服務(wù)器 String from = "你自己的電子信箱"; //發(fā)郵件的出發(fā)地(發(fā)件人的信箱) String to = "收件人信箱"; //發(fā)郵件的目的地(收件人信箱) // Get system properties Properties props = System.getProperties(); // Setup mail server props.put("mail.smtp.host", host); // Get session props.put("mail.smtp.auth", "true"); //這樣才能通過驗(yàn)證 MyAuthenticator myauth = new MyAuthenticator("你自己的電子信箱", "你自己的信箱密碼"); Session session = Session.getDefaultInstance(props, myauth); //session.setDebug(true); // Define message MimeMessage message = new MimeMessage(session); // Set the from address message.setFrom(new InternetAddress(from)); // Set the to address message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set the subject message.setSubject("測(cè)試程序!"); // Set the content message.setText("這是用java寫的發(fā)送電子郵件的測(cè)試程序!"); message.saveChanges(); Transport.send(message); } }