Memo
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
application.yml
spring:
mail:
host: smtp.●●.●●(Für Google Mail "smtp".gmail.com」)
port: 587
username: (Mail Adresse)
password: (Passwort)
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("Absender-E-Mail-Adresse");
msg.setTo("Ziel-E-Mail-Adresse");
msg.setSubject("Betreff Eingabefeld");
msg.setText("Körpereingabefeld");
this.sender.send(msg);
}
Schreibe ein Beispiel in die Klasse.
Recommended Posts