I’m trying to add the ‘Report Issue’ button to my ShinyProxy setup at work but I’m struggling to get it working.
We use Outlook/Microsoft Exchange but I don’t know where to find SMTP settings. In the Outlook Web App under ‘Settings for POP or IMAP access…’ the SMTP Setting field is ‘Not Available’. Do I need to request this information from my IT department? I don’t even know if I should use TLS or SSL setting.
I tried the following in my application.yml:
support:
mail-to-address: user@company.com
spring:
mail:
host: mail.company.com
port: 587
username: user@company.com
password: password
properties:
#For StartTLS
mail.smtp.starttls.enable: true
But when I click the ‘Report Issue’ button I get:
Message: Cannot send mail: no smtp settings configured
Any suggestions would be much appreciated.