Note
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
application.yml
spring:
mail:
host: smtp.●●.●●(Pour Gmail, "smtp".gmail.com」)
port: 587
username: (adresse mail)
password: (mot de passe)
properties.mail.smtp.auth: true
properties.mail.smtp.starttls.enable: true
sample
@Autowired
private MailSender sender;
public void sendMail() {
SimpleMailMessage msg = new SimpleMailMessage();
msg.setFrom("Adresse e-mail de l'expéditeur");
msg.setTo("Adresse e-mail de destination");
msg.setSubject("Champ de saisie du sujet");
msg.setText("Champ de saisie du corps");
this.sender.send(msg);
}
Écrivez un échantillon dans la classe.
Recommended Posts