We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
Same issue on v1.0.5:
[ERR] failed to send smtp notification for id: email : error getting SMTP client: error connecting to server: dial tcp IP_ADDR:25: connect: connection timed out
The problem is notify app trying to connect to port 25, which may not be correct.
To fix this, specify port in the smtp_server config. (It's not described in the README.md)
smtp_server
smtp: - id: email smtp_server: mail.example.com:465 << specify port here. eg., 465 or 587 smtp_username: [email protected] smtp_password: password from_address: [email protected] smtp_cc: - [email protected] smtp_format: "{{data}}" subject: "Email subject" smtp_html: false smtp_disable_starttls: false
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: