How to email config in redmine 6
Added by Mubarak Ali 11 months ago
How to email config in redmine 6 ?
Replies (1)
RE: How to email config in redmine 6
-
Added by Mubarak Ali 11 months ago
Hello, guys. I found the solution for configuring email in Redmine 6. Here are the steps:
Navigate to the configuration folder:
cd /opt/redmine/config
Edit the configuration.yml file:
nano configuration.yml
Add or update the following configuration under the production section:
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: "smtp.gmail.com"
port: 587
user_name: "your email address"
password: 'your app password'
authentication: :plain
domain: 'smtp.gmail.com'
default_from: "default sender email"
default_reply_to: "default reply-to email"
Make sure to replace the placeholder values like "your email address" and "your app password" with the actual details.