侧边栏壁纸
博主头像
杨不易呀

你的压力来源于无法自律,只是假装努力,现状跟不上内心欲望,所以你焦虑又恐慌。——杨不易呀

  • 累计撰写 72 篇文章
  • 累计创建 73 个标签
  • 累计收到 28 条评论

Java实现163网易邮箱消息发送

杨不易呀
2021-10-25 / 0 评论 / 1 点赞 / 1,457 阅读 / 2,300 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2021-12-26,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

image.png

依赖

maven依赖

  	<dependency>
            <groupId>javax.mail</groupId>
            <artifactId>javax.mail-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.mail</groupId>
            <artifactId>jakarta.mail</artifactId>
        </dependency>

jar包依赖进去搜索名称下载
https://mvnrepository.com/

代码



public class MailUtils {

    /**
     * 发件人邮箱
     */
    private static final String HOST="yangbuyiya@163.com";
    /**
     * 邮箱密码或授权码
     */
    private static final String PASSWORD="132132131321321213";
 
    /**
     * 发送邮件
     * @param direction 邮件人邮箱地址
     * @param subject 邮件名称/标题
     * @param message 消息、内容
     */
    public static boolean sendMail(String direction,String subject,String message){
 
        Properties props = new Properties();
        // 开启debug调试
        props.setProperty("mail.debug", "true");
        // 发送服务器需要身份验证
        props.setProperty("mail.smtp.auth", "true");
        // 设置邮件服务器主机名
        props.setProperty("mail.host", "smtp.163.com");
        // 发送邮件协议名称
        props.setProperty("mail.transport.protocol", "smtp");
 
        Session session = Session.getInstance(props);
        Transport transport= null;
        //新建消息
        Message msg = new MimeMessage(session);
        try {
            //设置邮件标题
            msg.setSubject(subject);
           //设置消息内容
            msg.setText(message);
            msg.setFrom(new InternetAddress(HOST));
            transport = session.getTransport();
            transport.connect("smtp.163.com", HOST, PASSWORD);
            transport.sendMessage(msg, new Address[] { new InternetAddress(direction) });
 
        } catch (MessagingException e) {
            e.printStackTrace();
            return false;
        }finally {
            try {
                //关闭、释放资源
                transport.close();
            } catch (MessagingException e) {
                e.printStackTrace();
            }
        }
        return true;
    }
 
 
}

发送测试



public class MailTest {
    /**
     * 发送消息
     */
    @Test
    public void sendMail() {
        boolean flag = MailUtils.sendMail("xxxxxxxx@163.com", "https://yangbuyi.top", "杨不易呀");
        if (flag){
            System.out.println("发送成功");
        }else{
            System.out.println("发送失败");
        }
 
    }
}

1
广告 广告

评论区