前言
之前发邮件,一直是使用公司封装好的工具类,还没体验过Springboot的自动配置的便捷性。最近,刚好搭建新项目,有发邮件功能,体验了一把。发邮件,大家最好,了解一下smtp、pop3协议。简单理解,一个是发送协议,一个是接受协议。springboot发邮件比较简单,直接上配置文件,和测试类了。
配置文件application.yml
spring:
mail:
host: smtp.qq.com
protocol: smtp
username: xxxx@qq.com
password: xxxxxx
port: 25
default-encoding: UTF-8
properties:
mail:
debug: true
smtp:
socketFactory:
class: javax.net.ssl.SSLSocketFactory
auth: true
timeout: 25000
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
代码示例
@SpringBootTest
@RunWith(SpringRunner.class)
public class EmailUtil {
@Autowired
private JavaMailSender javaMailSender;
@Test
public void sendSimpleMail() {
SimpleMailMessage message = new SimpleMailMessage();
message.setSubject("这里是邮件的主题");
message.setFrom("xxxx@qq.com");
message.setTo("1112***111@qq.com");
message.setCc("222***222*qq.com");
message.setBcc("333***333@qq.com");
message.setSentDate(new Date());
message.setText("这是测试邮件的正文");
javaMailSender.send(message);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
使用了springboot之后发邮件简单了很多,主要是yaml的配置,配置文件写完了后,Springboot会自动配置,此时将JavaMailSender直接注入,就是一个封装好的实例对象,大家也可以断点看一下对象的属性。
注意:
第一、邮件的发送者要和配置的username保持一致。否则会抛出异常。`
com.sun.mail.smtp.SMTPSenderFailedException: 553 Mail from must equal authorized user
第二、密码一定要正确,如果是公司自己的邮箱服务器,密码就是username的密码,要是qq 、163等邮箱password填写的是授权码。否则会抛出异常。
nested exception is javax.mail.AuthenticationFailedException: 535 Error: authentication failed
<>