javamail 发送 html邮件

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

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