Java 发送邮件 Java发送邮件的几种方式

Java 后端发送QQ邮件

也是由于这次需要这个功能,就广搜资料先做了几个Demo出来
首先需要了解一下常用的几种邮箱:QQ邮箱、163邮箱、126邮箱、企业邮箱;其中企业邮箱又分为很多企业下的,比如说:网易邮箱、阿里邮箱等。总之,这些都不重要,只需要知道怎么实现就好。
接下来说一下在实现方式上的区别:
1、QQ邮箱
2、163邮箱,163邮箱跟126邮箱是一家的,所以是线上并没有区别。
本篇文章以QQ邮箱发送至QQ邮箱为例给贴上完整的Demo
下一篇文章会写到163邮箱发送邮件到其他邮箱(包括QQ邮箱、163邮箱、企业邮箱等)
首先给一个完整的QQ邮件发送的Demo
该Demo为发送一个纯文本文件

public class SendEmailTest {
     
    public static void main(String[] args) {
     
        Map<String,Object> map = new HashMap<>();
        Properties properties = new Properties();
        properties.put("mail.transport.protocol", "smtp");// 连接协议
        properties.put("mail.smtp.host", "smtp.qq.com");// 主机名
        properties.put("mail.smtp.port", 465);// 端口号
        properties.put("mail.smtp.auth", "true");//设置smtp是否需要认证
        properties.put("mail.smtp.ssl.enable", "true");// 设置是否使用ssl安全连接 ---一般都使用
        properties.put("mail.debug", "true");// 设置是否显示debug信息 true 会在控制台显示相关信息
        try{
     
            // 得到回话对象
            Session session = Session.getInstance(properties);
            // 获取邮件对象
            Message message = new MimeMessage(session);
            // 设置发件人邮箱地址
            message.setFrom(new InternetAddress("[email protected]"));
            // 设置收件人邮箱地址
			//        message.setRecipients(Message.RecipientType.TO, new InternetAddress[]{
     
			new InternetAddress("[email protected]"),
			new InternetAddress("[email protected]"),
			new InternetAddress("[email protected]")});//多个收件人
            message.setRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));//一个收件人
            // 设置邮件标题
            message.setSubject("女神节快乐!");
            // 设置邮件内容
            message.setText("事事如意!");
            message.setSentDate(new Date());
            // 得到邮差对象
            Transport transport = session.getTransport();
            // 连接自己的邮箱账户
            transport.connect("[email protected]", "ugrcsuflldvqgge");// 密码为QQ邮箱开通的stmp服务后得到的客户端授权码
            // 发送邮件
            transport.sendMessage(message, message.getAllRecipients());
            transport.close();
            System.out.println("message = 发送成功!");
        }catch (Exception e){
     
            System.out.println("message = 发送失败!");
        }
    }
}

该Demo可以直接执行,需要修改的地方只有收件人地址、发件人地址、发件人授权码
关于授权码
由于发送邮件时不是在邮箱内发送,所以第三方登录授权码
如何获取QQ授权码

Java发送邮件的几种方式

如果觉得该文章对你有用,请手动为我点赞,支持一下吧!

你可能感兴趣的:(邮件发送,java)