java发送邮件

package com.wx.web.utils;
 import javax.mail.*;
 import javax.mail.internet.InternetAddress;
 import javax.mail.internet.MimeMessage;
 import java.util.Properties;
 
 /**
  * 邮件工具类
  */
 public class MailUtil {
     /**
      * 发送邮件
      * @param to 给谁发
      * @param text 发送内容
      */
     public static void send_mail(String to,String text) throws MessagingException {
         //创建连接对象 连接到邮件服务器
         Properties properties = new Properties();
         //设置发送邮件的基本参数
         //发送邮件服务器
         properties.put("mail.smtp.host", "smtp.qq.com");
         //发送端口
         properties.put("mail.smtp.port", "465");
         properties.put("mail.smtp.auth", "true");
         properties.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
         properties.put("mail.smtp.socketFactory.port", "465");
         properties.put("mail.transport.protocol", "smtp");
         //设置发送邮件的账号和密码
         Session session = Session.getInstance(properties, new Authenticator() {
             @Override
             protected PasswordAuthentication getPasswordAuthentication() {
                 //两个参数分别是发送邮件的账户和密码
                 return new PasswordAuthentication("14061885@qq.com","必须是授权码");
             }
         });
 
         //创建邮件对象
         Message message = new MimeMessage(session);
         //设置发件人
         message.setFrom(new InternetAddress("14061885@qq.com"));
         //设置收件人
         message.setRecipient(Message.RecipientType.TO,new InternetAddress(to));
         //设置主题
         message.setSubject("这是一份测试邮件");
         //设置邮件正文  第二个参数是邮件发送的类型
         message.setContent(text,"text/html;charset=UTF-8");
         //发送一封邮件
         Transport.send(message);
     }
     public static void main(String[] args) throws MessagingException {
         MailUtil.send_mail("25817125@qq.com","437612");
    }
 }
//阿里企业邮箱配置
         prop.put("mail.host","smtp.mxhichina.com" );  
         prop.put("mail.transport.protocol", "smtp");  
         prop.put("mail.smtp.auth", "true"); 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值