Project

General

Profile

feature request #9758

Updated by Andreas Kohlbecker over 2 years ago

A service to send emails 

 Configuration of the following properties should be possible via a Spring-PropertySource: 

 ~~~yaml 
 # =============================== 
 # = MAIL configurations 
 # =============================== 
   mail: 
     default-encoding: UTF-8 
     host: mail.bgbm.org 
     username: sender@bgbm.org 
     password: 09182309812 
     port: 587 
 #      host: mailrelay.fu-berlin.de 
 #      username: test 
 #      password: test 
 #      port: 
     properties: 
       mail: 
         smtp: 
           auth: true 
           starttls: 
             enable: true 
     protocol: smtp 
     test-connection: false 
 ~~~ 

 For the actually implemented solution, see below ....

Back