email issue
Added by Dushyant Gohil about 8 years ago
Hi,
I have configured redmine 3.3.0-1 on server which is having centos 7 installed. I am using SendGrid mail service for email. send mail is also configured on the server. I am able to send mails from terminal to any mail id but when I try to send mails from redmine it won't.
I have also tried to check with the email notification in settings. when I clicked on send a test mail it shows me mail sent but it won't come into my mail box.
For email we are using google apps and as mentioned in configuration.yml i have configured those email settings. below are the settings which I have done.
production:
email_delivery:
delivery_method: :sendmail
smtp_settings:
enable_starttls_auto: true
address: smtp.gmail.com
port: 587
domain: smtp.gmail.com # 'mydomain.com' for GoogleApps
authentication: :plain
user_name: dushyant.gohil@mydomain.com
password: xxxxxx
Need help in this!!
Thanks
Replies (2)
RE: email issue - Added by Olivier Houdas about 8 years ago
Hi,
You can try this :
smtp_settings:
enable_starttls_auto: true
delivery_method: :sendmail
address: smtp.gmail.com
port: 587
domain: gmail.com
authentication: :login
user_name: dushyant.gohil@mydomain.com
password: your_pwd
RE: email issue - Added by Dushyant Gohil about 8 years ago
Thanks Olivier Houdas
It Works for me. Thanks a lot.