Hi,
I saw the tutorial to send an email, the application.conf should look like :
smtp.host=... // Hostname of the smtp server (e.g. smtp.mycompany.com)
smtp.port=... // Port of the smtp server (e.g. 465).
smtp.ssl=... // Whether to enable ssl (true or false)
smtp.user=... // Username to access the smtp server
smtp.password=... // The password
smtp.debug=... // Enable logging of a huge amount of debug information (true or false)
This work perfectly well with gmail because gmail use SSL smtp.
But outlook use TLS encryption so is it possible to enable somewhere starttls.
The error I got is : Caused by: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.57 SMTP; Client was not authenticated to send anonymous mail during MAIL FROM
I tried to put in the conf :
smtp.tls=true
smtp.starttls=true
smtp.starttls.enable=true
but nothing work.
Thanks for your help