Java发送邮箱



导包

这里使用maven



    com.sun.mail
    javax.mail
    1.6.2




编写工具类

/*
 * @author Howl
 * @date 2020/1/6
 * @version 1.0
 * @description 邮件工具类
 */
public class MailUtils {
    
    //变量提升
    private static Session session;
    
    //静态代码块
    static{
        /*
         *  Properties配置文件的读取类
         *  host,SMTP主机名
         *  port,端口号
         *  auth,用户认证
         *  class,规定要使用SSL加密套接字
         *  
         *  Authenticator认证器
         *  授权邮箱,授权码(文末有解释)
         *  应用程序创建会话时注册该子类的实例并调用getPasswordAuthentication,返回一个PasswordAuthentication
         *  所以重写getPasswordAuthentication返回一个该类的对象,该类构造方法PasswordAuthentication(String userName, char[] password)
         *  
         *  session邮件会话
         *  收集邮件API使用的属性和默认值,单个默认会话可以由桌面上的多个应用程序共享,也可以创建未共享的会话
         */
        
        Properties props = new Properties();
        props.put("mail.smtp.host", "smtp.qq.com"); 
        props.put("mail.smtp.port", "465");         
        props.put("mail.smtp.auth", "true");        
        props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        
        Authenticator authenticator = new Authenticator() {
            public PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("授权邮箱","授权码");
            }
        };
        
        session = Session.getInstance(props, authenticator);
        
    }
    
    /*
     * @param mailAddress,收件人
     * @param subject,标题
     * @param text,内容
     * 
     */
    public static void sendMail(String mailAddress,String subject,String text) throws AddressException, MessagingException{
        /*
         * message邮件载体(需要运行时环境)
         * setFrom,发件人(参数是InternetAddress,属于Java的网络编程)
         * setRecipient,收件人(第一个TO--发送,后面是收件人)
         * setSubject,设置标题
         * send,静态发送邮件
         */
        MimeMessage message = new MimeMessage(session);
        message.setFrom(new InternetAddress("[email protected]"));
        message.setRecipient(Message.RecipientType.TO, new InternetAddress(mailAddress));
        message.setSubject(subject);
        message.setText(text, "utf-8");
        Transport.send(message);
        
    }

}




发送

public class MailTest {
    
    public static void main(String[] args) throws AddressException, MessagingException {
        
        MailUtils.sendMail("[email protected]", "9527", "去吉野家吗?");
        
    }
}




收件

Java发送邮箱_第1张图片

授权邮箱,授权码

以QQ邮箱为例,设置-->账号 找到并开启对应服务

授权邮箱就是QQ邮箱,授权码在开启服务后提示

Java发送邮箱_第2张图片



JavaxMail官方文档



你可能感兴趣的:(Java发送邮箱)