【知识积累】JavaMail实现发邮件功能

简介: 今天闲来没事,想着通过程序来给别人发邮件。于是,上网搜了一下,相应的资料也很多,刚开始完成了邮件的简单发送,后来想如何能发送附件,继续寻找 答案,但是遇到了一个问题是当我使用txt类型作为附件时,附件里的内容总是会显示在正文里面,并且还会出现正文乱码的现象,之后经过不断的查阅资料,终 于解决了问题,实现了我自己想要的功能。

一、前言

  今天闲来没事,想着通过程序来给别人发邮件。于是,上网搜了一下,相应的资料也很多,刚开始完成了邮件的简单发送,后来想如何能发送附件,继续寻找 答案,但是遇到了一个问题是当我使用txt类型作为附件时,附件里的内容总是会显示在正文里面,并且还会出现正文乱码的现象,之后经过不断的查阅资料,终 于解决了问题,实现了我自己想要的功能。

二、准备工作

  需要的jar包下载地址:https://java.net/projects/javamail/pages/Home

三、源代码

  主要的类有三个,代码分别如下。

  3.1 MailSenderInfo

  MailSenderInfo封装了邮件的基本信息。

package com.leesf.util;
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;    
    }    
}   


3.2 SimpleMailSender


SimpleMailSender 实现发送邮件的功能。


package com.leesf.util;
import java.io.File;
import java.io.UnsupportedEncodingException;
import java.util.Date;    
import java.util.Properties;   
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
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;    
import javax.mail.internet.MimeUtility;
public class SimpleMailSender  {    
    /**   
     * 以文本格式发送邮件   
     * @param mailInfo 待发送的邮件的信息   
     * @throws UnsupportedEncodingException
     */    
    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 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;    
    }  
    /**   
      * 以HTML格式发送邮件   
      * 并且添加附件格式
      * @param mailInfo 待发送的邮件信息   
      */  
    public boolean sendAttachMail(MailSenderInfo mailInfo) throws UnsupportedEncodingException {    
        // 判断是否需要身份认证    
        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());  
              //设置带附件的格式
              Multipart multipart = new MimeMultipart();  
              //设置正文
              MimeBodyPart textBodyPart = new MimeBodyPart();   
              textBodyPart.setText(mailInfo.getContent());  
              multipart.addBodyPart(textBodyPart);   
              //设置附件  
              MimeBodyPart attrBodyPart = new MimeBodyPart();
              DataSource dataSource = new FileDataSource(new File("C:\\Users\\LEESF\\Desktop\\test.txt"));  
              attrBodyPart.setDataHandler(new DataHandler(dataSource));  
              // 设置编码格式,使附件能正常显示中文名  
              attrBodyPart.setFileName(MimeUtility.encodeText("test.txt", "gbk", "B"));   
              multipart.addBodyPart(attrBodyPart);  
              mailMessage.setContent(multipart, "text/html;charset=gbk");  
              Transport.send(mailMessage); // 发送邮件  
              return true;    
        } catch (MessagingException ex) {    
            ex.printStackTrace();    
        }    
        return false;    
    }    
}   


3.3 MyAuthenticator


MyAuthenticator类主要实现邮箱的认证。


package com.leesf.util;
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);   
    }   
}

3.4 Main


用作测试使用。


package com.leesf.Main;
import java.io.UnsupportedEncodingException;
import com.leesf.util.MailSenderInfo;
import com.leesf.util.SimpleMailSender;
public class Main {
    public static void main(String[] args) throws UnsupportedEncodingException {   
     //这个类主要是设置邮件   
     MailSenderInfo mailInfo = new MailSenderInfo();   
     //服务器端口
     mailInfo.setMailServerHost("smtp.126.com");   
     //或者是通过qq邮箱发送
     //mailInfo.setMailServerHost("smtp.qq.com");
     mailInfo.setMailServerPort("25");    
     mailInfo.setValidate(true);    
     //您的邮箱用户名
     mailInfo.setUserName("leesf456@126.com");  
     //您的邮箱密码   
     mailInfo.setPassword("**********");
     //发送邮件源地址
     mailInfo.setFromAddress("leesf456@126.com");   
     //发送邮件目的地址
     mailInfo.setToAddress("********@126.com");   
     //主题
     mailInfo.setSubject("设置邮箱标题 如:http://www.cnblogs.com/leesf456/ 我的博客园");  
     //内容
     mailInfo.setContent("设置邮箱内容 如:http://www.cnblogs.com/leesf456/ 我的博客园");    
     //这个类主要来发送邮件   
     SimpleMailSender sms = new SimpleMailSender();   
     sms.sendTextMail(mailInfo);//发送文体格式    
     sms.sendHtmlMail(mailInfo);//发送html格式
     sms.sendAttachMail(mailInfo);//发送带附件格式
   }  
}

四、总结

  整个发送邮件的流程就完成了,如果按照上文来,应该是不会出现什么问题,源代码已经上传至github,欢迎fork,谢谢各位园友的观看~

目录
相关文章
|
JSON Kubernetes Cloud Native
美女同事的烦恼:如何配置 Apache SkyWalking 告警?
技术部基本上是一个和尚庙,女生非常少,即使有女生也略微有点抽象,小婉就不一样,她气质绝佳。 上午,同事小婉刚才从老板办公室里出来,看上去一脸不悦的样子。为了表示对同事的关(ba)心(gua),我就主动和她聊一聊。
311 0
美女同事的烦恼:如何配置 Apache SkyWalking 告警?
|
Java Shell 数据安全/隐私保护
如何利用我们搭建的Mail的发送邮件服务工具
如何利用我们搭建的Mail的发送邮件服务工具
如何利用我们搭建的Mail的发送邮件服务工具
|
Java 数据安全/隐私保护
springboot发邮件,javaxmail收邮件功能
springboot发邮件,javaxmail收邮件功能
216 0
|
程序员
程序员之路:Gmail邮箱客户端配置_
程序员之路:Gmail邮箱客户端配置_
程序员之路:Gmail邮箱客户端配置_
|
前端开发
童鞋,[HttpClient发送文件的技术实践]请查收
1.对常规html表单上传文件的功能,做协议级分析。 2.根据分析结果,HttpClient使用同样的姿势发送文件: 使用multipart/form-data(多部分表单媒体类型)发起上传请求。
童鞋,[HttpClient发送文件的技术实践]请查收
|
Java
springboot业务功能实战(二十)连接内外网邮箱配置全解析,实现邮件提醒功能
springboot业务功能实战(二十)连接内外网邮箱配置全解析,实现邮件提醒功能
306 0
springboot业务功能实战(二十)连接内外网邮箱配置全解析,实现邮件提醒功能
好好编程-物流项目13【登录认证-shiro实现】
我们已经完成了用户的CRUD操作。本文我们来介绍下基于Shiro的登录认证操作。
好好编程-物流项目13【登录认证-shiro实现】
|
程序员
程序员之路:Gmail邮箱客户端配置
程序员之路:Gmail邮箱客户端配置
214 0
程序员之路:Gmail邮箱客户端配置
|
Java API Spring
基于JavaMail的日历(会议)邮件发送实现
JavaMail发送基本邮件ATA上有的是,但这次有个需求提出要实现会议邮件,呃,习惯性看有没有同学已经实现了,居然少之又少,不知道是不是有其他团队有这种需求,目测也不多哈哈,实现了这个功能感觉还挺有意思的,分享给大家交流交流。(可能有些理解不对,请大家指出,谢谢) 前期真的是比较懵圈,虽然一开始已经有实现了普通邮件发送,是通过Spring提供的*MimeMessageHelper*这个组件
3023 0