Java 邮件(JavaMail)

Java 邮件(JavaMail)

  1. 创建MailSenderInfo Bean,用来存储邮件使用的基本信息。
/**
 * 1. 发送邮件需要使用的基本信息
 * @author mazaiting
 */
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 isValidate = false;
    /** 邮件主题 */
    private String subject;
    /** 邮件文本内容 */
    private String content;
    /** 邮件附件的文件 */
    private List<File> fileList;

    /**
     * 获得邮件会话属性
     * @throws GeneralSecurityException  证书安全异常
     */
    public Properties getProperties() throws GeneralSecurityException {
        Properties p = new Properties();
        p.put("mail.smtp.host", this.mailServerHost);
        p.put("mail.smtp.port", this.mailServerPort);
        p.put("mail.smtp.auth", isValidate ? "true" : "false");
        // 进行证书验证
        MailSSLSocketFactory mssf = new MailSSLSocketFactory();
        mssf.setTrustAllHosts(true);
        p.put("mail.smtp.ssl.enable", true);
        p.put("mail.smtp.ssl.socketFactory", mssf);
        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 String getFromAddress() {
        return fromAddress;
    }

    public void setFromAddress(String fromAddress) {
        this.fromAddress = fromAddress;
    }

    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 getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public boolean isValidate() {
        return isValidate;
    }

    public void setValidate(boolean isValidate) {
        this.isValidate = isValidate;
    }

    public String getSubject() {
        return subject;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public List<File> getFileList() {
        return fileList;
    }

    public void setFileList(List<File> fileList) {
        this.fileList = fileList;
    }

}
  1. 密码验证管理
/**
 * 2. 简单的验证管理
 * @author mazaiting
 */
public class SimpleAuthenticator extends Authenticator{
    /**用户名*/
    private String username = null;
    /**密码*/
    private String password = null;

    public SimpleAuthenticator(String username, String password) {
        this.username = username;
        this.password = password;
    }
    
    protected PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(username, password);
    }
}
  1. 实现简单邮件服务器
/**
 * 3. 简单邮件
 * @author mazaiting
 */
public class SimpleMailServer {
    /**
     * 以文本格式发送邮件
     * @param mailInfo 待发送的邮件信息
     * @return true 发送成功; false 发送不成功
     */
    public boolean sendTextMail(MailSenderInfo mailInfo) {
        try {
            // 判断是否需要身份验证
            SimpleAuthenticator authenticator = null;
            Properties properties = mailInfo.getProperties();
            if (mailInfo.isValidate()) {
                // 如果需要身份验证, 则创建一个密码验证器
                authenticator = new SimpleAuthenticator(mailInfo.getUsername(), mailInfo.getPassword());
            }

            // 根据邮件会话属性和密码验证器构造一个发送邮件的Session
            Session sendMailSession = Session.getDefaultInstance(properties, authenticator);

            // 根据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 (Exception e) {
            e.printStackTrace();
        }
        return false;
    }

    /**
     * 以HTML格式发送邮件
     * 
     * @param mailInfo
     *            待发送的邮件
     * @return true 发送成功; false 发送失败。
     */
    public boolean sendHtmlMail(MailSenderInfo mailInfo) {
        try {
            // 判断是否需要身份认证
            SimpleAuthenticator authenticator = null;
            Properties properties = mailInfo.getProperties();
            // 如果需要身份认证, 则创建一个密码验证器
            if (mailInfo.isValidate()) {
                authenticator = new SimpleAuthenticator(mailInfo.getUsername(), mailInfo.getPassword());
            }
            // 根据邮件会话属性和密码验证器构造一个发送邮件的Session
            Session sendMailSession = Session.getDefaultInstance(properties, authenticator);

            // 根据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();
            
            if (null != mailInfo.getContent()) {
                setContent(mailInfo, mainPart);
            }
            if (null != mailInfo.getFileList() && mailInfo.getFileList().size() > 0) {
                addAttachment(mailInfo.getFileList(), mainPart);
            }
            
            
            // 将MiniMultipart对象设置为邮件内容
            mailMessage.setContent(mainPart);
            // 发送邮件
            Transport.send(mailMessage);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;
    }

    /**
     * 设置内容
     * @param mailInfo 邮件信息
     * @param mainPart 容器
     * @throws MessagingException 消息异常
     */
    public void setContent(MailSenderInfo mailInfo, Multipart mainPart) throws MessagingException {
        // 创建一个包含HTML内容的MimeBodyPart
        BodyPart textContent = new MimeBodyPart();
        // 设置HTML内容
        textContent.setContent(mailInfo.getContent(), "text/html; charset=utf-8");
        mainPart.addBodyPart(textContent);
    }
    
    /**
     * 添加附件
     * @param filePath 文件路径
     * @param fileName 文件名
     * @param mainPart 容器
     * @throws MessagingException 消息异常
     */
    public void addAttachment(List<File> fileList, Multipart mainPart) throws MessagingException{
        for (int i = 0; i < fileList.size(); i++){
            File file = fileList.get(i);
            BodyPart fileContent = new MimeBodyPart();
            DataSource source = new FileDataSource(file.getAbsolutePath());
            fileContent.setDataHandler(new DataHandler(source));
            fileContent.setFileName(file.getName());
            mainPart.addBodyPart(fileContent);
        }
    }
}
  1. 主函数使用
public class Client {
    public static void main(String[] args) {
        
        // 设置邮件
        MailSenderInfo mailInfo = new MailSenderInfo();
        // 设置服务器主机名
        mailInfo.setMailServerHost("smtp.qq.com");
        // 设置服务器端口
        mailInfo.setMailServerPort("465");
        // 设置密码验证
        mailInfo.setValidate(true);
        // 设置用户名
        mailInfo.setUsername("1449689807@qq.com");
        // 设置登录验证需要的密码
        mailInfo.setPassword("****************");// 设置为自己的验证密码
        // 设置发送者地址
        mailInfo.setFromAddress("1449689807@qq.com");
        // 设置接收者地址
        mailInfo.setToAddress("1425941077@qq.com");
        // 设置邮件标题
        mailInfo.setSubject("邮件标题");
        // 设置邮件内容
        mailInfo.setContent("邮件内容");
        // 设置邮件携带的附件
//      List<File> fileList = new ArrayList<>();
//      fileList.add(new File("C:\\Users\\Administrator\\Desktop\\password.png"));
//      mailInfo.setFileList(fileList);
        
        // 发送邮件
        SimpleMailServer sms = new SimpleMailServer();
//      sms.sendTextMail(mailInfo);// 发送文本格式
        sms.sendHtmlMail(mailInfo);// 发送html格式      
    }
}
  1. 遇到的问题
    查看详情

  2. Android 使用Javamail发送邮件时,要将第一步中的getProperties()函数更改为如下内容:

    /**
     * 获得邮件会话属性
     * @throws GeneralSecurityException  证书安全异常
     */
    Properties getProperties() throws GeneralSecurityException {
        MailcapCommandMap mc = (MailcapCommandMap) CommandMap.getDefaultCommandMap();
        mc.addMailcap("text/html;; x-java-content-handler=com.sun.mail.handlers.text_html");
        mc.addMailcap("text/xml;; x-java-content-handler=com.sun.mail.handlers.text_xml");
        mc.addMailcap("text/plain;; x-java-content-handler=com.sun.mail.handlers.text_plain");
        mc.addMailcap("multipart/*;; x-java-content-handler=com.sun.mail.handlers.multipart_mixed");
        mc.addMailcap("message/rfc822;; x-java-content-handler=com.sun.mail.handlers.message_rfc822");
        CommandMap.setDefaultCommandMap(mc);
        Properties p = new Properties();
        p.put("mail.smtp.host", this.mailServerHost);
        p.put("mail.smtp.port", this.mailServerPort);
        p.put("mail.smtp.auth", isValidate ? "true" : "false");
        // 进行证书验证
        MailSSLSocketFactory mssf = new MailSSLSocketFactory();
        mssf.setTrustAllHosts(true);
        p.put("mail.smtp.ssl.enable", true);
        p.put("mail.smtp.ssl.socketFactory", mssf);
        return p;
    }

其中需要activation.jar,点击下载。或者Gradle直接依赖compile 'com.sun.mail:android-mail:1.6.0',使用Gradle依赖之后,之前用到的mail.jar与此处用到的activation.jar都必须要删除,否则会重复编译jar。

示例代码下载

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容