Action Mailer Configuration
Added by Ivan Cenov about 14 years ago
Hello,
I use SMTP server that does not want authentication (no username and password required). How to configure w
email.yml in this case? What I have to put for :authentication:, :user_name:, :password: ? I tried with omitting them at all but no email notifications received.
Ivan
Replies (2)
RE: Action Mailer Configuration - Added by Felix Schäfer about 14 years ago
What does your email.yml look like? Did the test email (Administration > Settings > Email) work? You might need a :domain
in your config.
RE: Action Mailer Configuration - Added by Ivan Cenov about 14 years ago
Thanks, I have forgotten domain. Now it is in this format:
production:
delivery_method: :smtp
smtp_settings:
address: "mail.example.com"
port: 25
domain: "mycompany.com"
It works now.
Ivan