封装JavaMail发送邮件

package cc.ccoder.until.mail;

import com.sun.mail.util.MailSSLSocketFactory;

import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;

/**
 * Author    :  chencong
 * Time      :  2017/8/26 11:01
 * Package   :  cc.ccoder.until.mail
 * Describe  :  邮件工具类,直接调用构造方法进行配置目的邮箱地址。
 */
public class MailUtil implements Runnable {
    private String email;// 收件人邮箱
    private String code;// 激活码
    private String username;  // 显示用户名

    public MailUtil(String email,String username, String code) {
        this.email = email;
        this.username = username;
        this.code = code;
    }

    public void run() {
        // 1.创建连接对象javax.mail.Session
        // 2.创建邮件对象 javax.mail.Message
        // 3.发送一封激活邮件
        String from = "1042738887@qq.com";// 发件人电子邮箱
        String host = "smtp.qq.com"; // 指定发送邮件的主机smtp.qq.com(QQ)|smtp.163.com(网易)

        Properties properties = System.getProperties();// 获取系统属性

        properties.setProperty("mail.smtp.host", host);// 设置邮件服务器
        properties.setProperty("mail.smtp.auth", "true");// 打开认证

        try {
            //QQ邮箱需要下面这段代码,163邮箱不需要
            MailSSLSocketFactory sf = new MailSSLSocketFactory();
            sf.setTrustAllHosts(true);
            properties.put("mail.smtp.ssl.enable", "true");
            properties.put("mail.smtp.ssl.socketFactory", sf);


            // 1.获取默认session对象
            Session session = Session.getDefaultInstance(properties, new Authenticator() {
                public PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication("admin@ccoder.cc", "tkzxnbhcznzpbedb"); // 发件人邮箱账号、授权码
                }
            });

            // 2.创建邮件对象
            Message message = new MimeMessage(session);
            // 2.1设置发件人
            message.setFrom(new InternetAddress(from));
            // 2.2设置接收人
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(email));
            // 2.3设置邮件主题
            message.setSubject("账号激活");
            // 2.4设置邮件内容
            String content = "<html><head></head><body><h1>这是一封激活邮件,激活用户名 " + username + " ,激活请点击以下链接</h1><h3><a href='http://localhost:8080/RegisterDemo/ActiveServlet?code="
                    + code + "'>http://localhost:8080/user/UpdateUserStatusServlet?username=" + username + "&key=" + code
                    + "</href></h3></body></html>";
            message.setContent(content, "text/html;charset=UTF-8");
            // 3.发送邮件
            Transport.send(message);
            System.out.println("邮件成功发送!");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        //这样执行
        MailUtil mailUtil = new MailUtil("1042738887@qq.com","chencong","12121212");
        mailUtil.run();
        //或者这样执行
        // 收件人邮箱   收件人用户名(激活用户名)  激活码
        //new MailUtil("1042738887@qq.com","聪聪","121212121").run();
    }
}

之前想用qq邮箱发送激活邮件,于是就想到了使用javamail实现这样的一个功能来完成。详细代码都在上面,代码都有注释。
还有就是注意自己的邮箱服务器还是授权码,授权码在自己的邮箱设置当中查找这里写图片描述

聪聪的独立博客

聪聪的独立博客 ,一个喜欢技术,喜欢钻研的95后。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值