首页 > 编程语言 > 详细

javamail发送邮件的简单实例(转)

时间:2015-03-16 23:05:17      阅读:404      评论:0      收藏:0      [点我收藏+]

 

javamail发送邮件的简单实例

今天学习了一下JavaMail,javamail发送邮件确实是一个比较麻烦的问题。为了以后使用方便,自己写了段代码,打成jar包,以方便以后使用。呵呵技术分享 
以下三段代码是我的全部代码,朋友们如果想用,直接复制即可。

第一个类:MailSenderInfo.java 

技术分享package com.util.mail;    技术分享/**    技术分享* 发送邮件需要使用的基本信息  技术分享*author by wangfun 技术分享http://www.5a520.cn 小说520   技术分享*/     技术分享import java.util.Properties;     技术分享public class MailSenderInfo {     技术分享    // 发送邮件的服务器的IP和端口     技术分享    private String mailServerHost;     技术分享    private String mailServerPort = "25";     技术分享    // 邮件发送者的地址     技术分享    private String fromAddress;     技术分享    // 邮件接收者的地址     技术分享    private String toAddress;     技术分享    // 登陆邮件发送服务器的用户名和密码     技术分享    private String userName;     技术分享    private String password;     技术分享    // 是否需要身份验证     技术分享    private boolean validate = false;     技术分享    // 邮件主题     技术分享    private String subject;     技术分享    // 邮件的文本内容     技术分享    private String content;     技术分享    // 邮件附件的文件名     技术分享    private String[] attachFileNames;       技术分享    /**    技术分享      * 获得邮件会话属性    技术分享      */     技术分享    public Properties getProperties(){     技术分享      Properties p = new Properties();     技术分享      p.put("mail.smtp.host", this.mailServerHost);     技术分享      p.put("mail.smtp.port", this.mailServerPort);     技术分享      p.put("mail.smtp.auth", validate ? "true" : "false");     技术分享      return p;     技术分享    }     技术分享    public String getMailServerHost() {     技术分享      return mailServerHost;     技术分享    }     技术分享    public void setMailServerHost(String mailServerHost) {     技术分享      this.mailServerHost = mailServerHost;     技术分享    }    技术分享    public String getMailServerPort() {     技术分享      return mailServerPort;     技术分享    }    技术分享    public void setMailServerPort(String mailServerPort) {     技术分享      this.mailServerPort = mailServerPort;     技术分享    }    技术分享    public boolean isValidate() {     技术分享      return validate;     技术分享    }    技术分享    public void setValidate(boolean validate) {     技术分享      this.validate = validate;     技术分享    }    技术分享    public String[] getAttachFileNames() {     技术分享      return attachFileNames;     技术分享    }    技术分享    public void setAttachFileNames(String[] fileNames) {     技术分享      this.attachFileNames = fileNames;     技术分享    }    技术分享    public String getFromAddress() {     技术分享      return fromAddress;     技术分享    }     技术分享    public void setFromAddress(String fromAddress) {     技术分享      this.fromAddress = fromAddress;     技术分享    }    技术分享    public String getPassword() {     技术分享      return password;     技术分享    }    技术分享    public void setPassword(String password) {     技术分享      this.password = password;     技术分享    }    技术分享    public String getToAddress() {     技术分享      return toAddress;     技术分享    }     技术分享    public void setToAddress(String toAddress) {     技术分享      this.toAddress = toAddress;     技术分享    }     技术分享    public String getUserName() {     技术分享      return userName;     技术分享    }    技术分享    public void setUserName(String userName) {     技术分享      this.userName = userName;     技术分享    }    技术分享    public String getSubject() {     技术分享      return subject;     技术分享    }    技术分享    public void setSubject(String subject) {     技术分享      this.subject = subject;     技术分享    }    技术分享    public String getContent() {     技术分享      return content;     技术分享    }    技术分享    public void setContent(String textContent) {     技术分享      this.content = textContent;     技术分享    }     技术分享}    技术分享

第二个类:SimpleMailSender.java

技术分享package com.util.mail;    技术分享   技术分享import java.util.Date;     技术分享import java.util.Properties;    技术分享import javax.mail.Address;     技术分享import javax.mail.BodyPart;     技术分享import javax.mail.Message;     技术分享import javax.mail.MessagingException;     技术分享import javax.mail.Multipart;     技术分享import javax.mail.Session;     技术分享import javax.mail.Transport;     技术分享import javax.mail.internet.InternetAddress;     技术分享import javax.mail.internet.MimeBodyPart;     技术分享import javax.mail.internet.MimeMessage;     技术分享import javax.mail.internet.MimeMultipart;     技术分享   技术分享/**    技术分享* 简单邮件(不带附件的邮件)发送器    技术分享http://www.bt285.cn BT下载 技术分享*/     技术分享public class SimpleMailSender  {     技术分享/**    技术分享  * 以文本格式发送邮件    技术分享  * @param mailInfo 待发送的邮件的信息    技术分享  */     技术分享    public boolean sendTextMail(MailSenderInfo mailInfo) {     技术分享      // 判断是否需要身份认证     技术分享      MyAuthenticator authenticator = null;     技术分享      Properties pro = mailInfo.getProperties();    技术分享      if (mailInfo.isValidate()) {     技术分享      // 如果需要身份认证,则创建一个密码验证器     技术分享        authenticator = new MyAuthenticator(mailInfo.getUserName(), mailInfo.getPassword());     技术分享      }    技术分享      // 根据邮件会话属性和密码验证器构造一个发送邮件的session     技术分享      Session sendMailSession = Session.getDefaultInstance(pro,authenticator);     技术分享      try {     技术分享      // 根据session创建一个邮件消息     技术分享      Message mailMessage = new MimeMessage(sendMailSession);     技术分享      // 创建邮件发送者地址     技术分享      Address from = new InternetAddress(mailInfo.getFromAddress());     技术分享      // 设置邮件消息的发送者     技术分享      mailMessage.setFrom(from);     技术分享      // 创建邮件的接收者地址,并设置到邮件消息中     技术分享      Address to = new InternetAddress(mailInfo.getToAddress());     技术分享      mailMessage.setRecipient(Message.RecipientType.TO,to);     技术分享      // 设置邮件消息的主题     技术分享      mailMessage.setSubject(mailInfo.getSubject());     技术分享      // 设置邮件消息发送的时间     技术分享      mailMessage.setSentDate(new Date());     技术分享      // 设置邮件消息的主要内容     技术分享      String mailContent = mailInfo.getContent();     技术分享      mailMessage.setText(mailContent);     技术分享      // 发送邮件     技术分享      Transport.send(mailMessage);    技术分享      return true;     技术分享      } catch (MessagingException ex) {     技术分享          ex.printStackTrace();     技术分享      }     技术分享      return false;     技术分享    }     技术分享        技术分享    /**    技术分享      * 以HTML格式发送邮件    技术分享      * @param mailInfo 待发送的邮件信息    技术分享      */     技术分享    public static boolean sendHtmlMail(MailSenderInfo mailInfo){     技术分享      // 判断是否需要身份认证     技术分享      MyAuthenticator authenticator = null;    技术分享      Properties pro = mailInfo.getProperties();    技术分享      //如果需要身份认证,则创建一个密码验证器      技术分享      if (mailInfo.isValidate()) {     技术分享        authenticator = new MyAuthenticator(mailInfo.getUserName(), mailInfo.getPassword());    技术分享      }     技术分享      // 根据邮件会话属性和密码验证器构造一个发送邮件的session     技术分享      Session sendMailSession = Session.getDefaultInstance(pro,authenticator);     技术分享      try {     技术分享      // 根据session创建一个邮件消息     技术分享      Message mailMessage = new MimeMessage(sendMailSession);     技术分享      // 创建邮件发送者地址     技术分享      Address from = new InternetAddress(mailInfo.getFromAddress());     技术分享      // 设置邮件消息的发送者     技术分享      mailMessage.setFrom(from);     技术分享      // 创建邮件的接收者地址,并设置到邮件消息中     技术分享      Address to = new InternetAddress(mailInfo.getToAddress());     技术分享      // Message.RecipientType.TO属性表示接收者的类型为TO     技术分享      mailMessage.setRecipient(Message.RecipientType.TO,to);     技术分享      // 设置邮件消息的主题     技术分享      mailMessage.setSubject(mailInfo.getSubject());     技术分享      // 设置邮件消息发送的时间     技术分享      mailMessage.setSentDate(new Date());     技术分享      // MiniMultipart类是一个容器类,包含MimeBodyPart类型的对象     技术分享      Multipart mainPart = new MimeMultipart();     技术分享      // 创建一个包含HTML内容的MimeBodyPart     技术分享      BodyPart html = new MimeBodyPart();     技术分享      // 设置HTML内容     技术分享      html.setContent(mailInfo.getContent(), "text/html; charset=utf-8");     技术分享      mainPart.addBodyPart(html);     技术分享      // 将MiniMultipart对象设置为邮件内容     技术分享      mailMessage.setContent(mainPart);     技术分享      // 发送邮件     技术分享      Transport.send(mailMessage);     技术分享      return true;     技术分享      } catch (MessagingException ex) {     技术分享          ex.printStackTrace();     技术分享      }     技术分享      return false;     技术分享    }     技术分享}    技术分享

第三个类:MyAuthenticator.java 

 

技术分享package com.util.mail;    技术分享   技术分享import javax.mail.*;    技术分享      技术分享public class MyAuthenticator extends Authenticator{    技术分享    String userName=null;    技术分享    String password=null;    技术分享         技术分享    public MyAuthenticator(){    技术分享    }    技术分享    public MyAuthenticator(String username, String password) {     技术分享        this.userName = username;     技术分享        this.password = password;     技术分享    }     技术分享    protected PasswordAuthentication getPasswordAuthentication(){    技术分享        return new PasswordAuthentication(userName, password);    技术分享    }    技术分享}    技术分享

下面给出使用上面三个类的代码:

技术分享public static void main(String[] args){    技术分享         //这个类主要是设置邮件    技术分享      MailSenderInfo mailInfo = new MailSenderInfo();     技术分享      mailInfo.setMailServerHost("smtp.163.com");     技术分享      mailInfo.setMailServerPort("25");     技术分享      mailInfo.setValidate(true);     技术分享      mailInfo.setUserName("han2000lei@163.com");     技术分享      mailInfo.setPassword("**********");//您的邮箱密码     技术分享      mailInfo.setFromAddress("han2000lei@163.com");     技术分享      mailInfo.setToAddress("han2000lei@163.com");     技术分享      mailInfo.setSubject("设置邮箱标题 如http://www.guihua.org 中国桂花网");     技术分享      mailInfo.setContent("设置邮箱内容 如http://www.guihua.org 中国桂花网 是中国最大桂花网站==");     技术分享         //这个类主要来发送邮件    技术分享      SimpleMailSender sms = new SimpleMailSender();    技术分享          sms.sendTextMail(mailInfo);//发送文体格式     技术分享          sms.sendHtmlMail(mailInfo);//发送html格式    技术分享    }   技术分享

最后,给出朋友们几个注意的地方: 
1、使用此代码你可以完成你的javamail的邮件发送功能。三个类缺一不可。 
2、这三个类我打包是用的com.util.mail包,如果不喜欢,你可以自己改,但三个类文件必须在同一个包中 
3、不要使用你刚刚注册过的邮箱在程序中发邮件,如果你的163邮箱是刚注册不久,那你就不要使用“smtp.163.com”。因为你发不出去。刚注册的邮箱是不会给你这种权限的,也就是你不能通过验证。要使用你经常用的邮箱,而且时间比较长的。 
4、另一个问题就是mailInfo.setMailServerHost("smtp.163.com");mailInfo.setFromAddress("han2000lei@163.com");这两句话。即如果你使用163smtp服务器,那么发送邮件地址就必须用163的邮箱,如果不的话,是不会发送成功的。 
5、关于javamail验证错误的问题,网上的解释有很多,但我看见的只有一个。就是我的第三个类。你只要复制全了代码,我想是不会有问题的。

 

http://www.blogjava.net/wangfun/archive/2009/04/15/265748.html

javamail发送邮件的简单实例(转)

原文:http://www.cnblogs.com/softidea/p/4343112.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!