javamail 收发 文本邮件

  1. /**
  2.  * 
  3.  */
  4. package com.tsts.oa.mail;
  5. import java.util.Properties;
  6. import javax.mail.Authenticator;
  7. import javax.mail.Message;
  8. import javax.mail.PasswordAuthentication;
  9. import javax.mail.Session;
  10. import javax.mail.Transport;
  11. import javax.mail.internet.InternetAddress;
  12. import javax.mail.internet.MimeMessage;
  13. /**
  14.  * @author sunyanan
  15.  * 
  16.  */
  17. public class SendHelper {
  18.  public static void send() throws Exception {
  19.   Properties prop = new Properties();
  20.   prop.put("mail.smtp.host""smtp.126.com");
  21.   prop.put("mail.smtp.auth""true");
  22.   
  23.   Session session =  Session.getDefaultInstance(prop, (new SendHelper()).new AT());
  24.   
  25.   session.setDebug(true);
  26.   MimeMessage message = new MimeMessage(session);
  27.   
  28.   message.setFrom(new InternetAddress("[email protected]"));
  29.   message.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
  30.   message.setSubject("主题");
  31.   message.setText("内容");
  32.   Transport.send(message);
  33.   
  34.  }
  35.  /**
  36.   * @param args
  37.   */
  38.  public static void main(String[] args) throws Exception {
  39.   send();
  40.  }
  41.  class AT extends Authenticator {
  42.   @Override
  43.   protected PasswordAuthentication getPasswordAuthentication() {
  44.    // TODO Auto-generated method stub
  45.    return new PasswordAuthentication("[email protected]""xxxxxxxx");
  46.   }
  47.  }
  48. }

你可能感兴趣的:(session,String,javamail)