先说一下我之前说过如何接收qq邮箱和阿里云邮箱
这里主要说一下qq邮箱发邮件,其实qq邮箱和阿里云邮箱没啥区别:
先说一下SpringBoot的依赖:
在application.properties加入以下:
spring.mail.host=smtp.qq.com //这里qq是公用的
spring.mail.username=179061434@qq.com //qq邮箱
spring.mail.password= //POP3的授权码如下图在qq那里
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true
最后就是测试代码,我这里放在统一异常处理里面,一旦项目错误就立马发邮件给我:
就这么简单一个邮件就发送成功让你们看看成果: