Integration with SMTP for invitations and password resets
To allow Allure TestOps sending the emails for inviting new users (feature available from the version 4.18.0) password reset you need to add the following environment variables to UAA service settings:
There is an example for gmail usage to send the emails.
uaa:
environment:
SPRING_MAIL_HOST=smtp.gmail.com
SPRING_MAIL_PORT=465
SPRING_MAIL_USERNAME=username
SPRING_MAIL_PASSWORD=password
[email protected] # this will appear as sender of emails sent from Allure Testops
# [email protected] # use your corporate support email here
SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=true
SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=true
SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_REQUIRED=true
SPRING_MAIL_PROPERTIES_MAIL_SMTP_SSL_ENABLE=true
SPRING_MAIL_PROPERTIES_MAIL_SMTP_SSL_TRUST=smtp.gmail.com
© Qameta Software Inc. All rights reserved.