SpringBoot 发送邮件

邮件协议基本知识

文末源码

  • 1.SMTP:简单邮件传输协议,用于发送邮件,默认端口25
  • 2.POP2: 邮局协议2,用于接收邮件,默认端口109,基本已废弃
  • 3.pop3: 邮局协议3,用于接收邮件,默认端口 110
  • 4.IMAP:网络信息访问协议,用于接收邮件,默认端口 143,只下载邮件标题 收件人信息

以QQ设置中为例:

SpringBoot 发送邮件_第1张图片

代码演示

第一步,新建项目SpringBoot工程。
第二步,引入maven依赖

    发送邮件所需依赖,在pom.xml加入。


        
            org.springframework.boot
            spring-boot-starter-mail
        

第三步,配置application.properties配置文件

spring.application.name=mail

spring.mail.host=smtp.qq.com
[email protected]
spring.mail.password=your_password  # 注意:这里是你的邮箱的第三方客户端密码,而不是邮箱的登录密码!
spring.mail.default-encoding=UTF-8

此处生成密码方法如下,点击邮箱设置,生成密码
SpringBoot 发送邮件_第2张图片
SpringBoot 发送邮件_第3张图片

发送带有照片的邮件

service

    // 将配置文件的username注入
    @Value("${spring.mail.username}")
    private String from;

    @Autowired
    private JavaMailSender javaMailSender;
    /**
     * 发送带图片的邮件
     * @param Id
     * @param to
     * @param subject
     * @param content
     * @param id
     * @throws MessagingException
     */
    public void sendImgResourceMail(String to,
                                    String subject,
                                    String content,
                                    String Id, String id) {
        logger.info("发送带图片的邮件");
        MimeMessage mailMessage = javaMailSender.createMimeMessage();
        MimeMessageHelper helper = null;
        try {
            helper = new MimeMessageHelper(mailMessage , true);


            helper.setTo(to);
            helper.setSubject(subject);
            helper.setText(content , true);

            // 发    送     者
            helper.setFrom(from);

            // 添加图片
            FileSystemResource srcPath = new FileSystemResource(new File(Id));

            helper.addInline(Id , srcPath);

            javaMailSender.send(mailMessage);  // 发送邮件

        } catch (MessagingException e) {
            logger.info("发送带图片的邮件失败");
        }
    }

测试

@Test
    public void sendImgResourceMail() throws MessagingException {

        String srcPath = "F:\\img\\1.png";
        String Id = "666";
        String content = "";
        mailService.sendImgResourceMail("[email protected]",
                                        "Test",
                                        content,
                                        srcPath,
                                        Id);
    }

发送模板用例


        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        



    
    邮件模板


    你好,感谢您的注册,这是一封验证邮件,请点击下面的链接完成注册,感谢您的支持!
    
    激活账号

测试

   @Autowired
    private TemplateEngine templateEngine;

    @Test
    public void TestTemplateMail() throws MessagingException {

        Context context = new Context();
        context.setVariable("id", "999");

        String emailContent = templateEngine.process("mailTemplate", context);

        mailService.sendHtmlMail("[email protected]","Test",emailContent);

    }

成功收到邮件:
SpringBoot 发送邮件_第4张图片


仓库地址

Github仓库地址:
https://github.com/xmpjava/mail-java
Gitee仓库地址:
https://gitee.com/love-code-bear/mail

你可能感兴趣的:(springbootjava)