config.email.yml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of email-sender Show documentation
Show all versions of email-sender Show documentation
An email utility that is responsible for sending emails.
# Email Sender Configuration
---
# Email server host name or IP address
host: ${email.host:mail.lightapi.net}
# Email SMTP port number. Please don't use port 25 as it is not safe
port: ${email.port:587}
# Email user or sender address.
user: ${email.user:[email protected]}
# Email password. If you want to put the email.pass in values.yml, you must encrypt it.
# If you don't want to put the password in the config file, you can use the following environment variable.
# EMAIL_PASS=password
pass: ${email.pass:password}
# Enable debug. Default to false.
debug: ${email.debug:true}
# Enable Authentication. Default to true.
auth: ${email.auth:true}