3
votes
1answer
80 views

How can I set the value of 'config.action_mailer.default_url_options' with domain.name?

I have to setup this for my devise usage. But my app allows users to access through 2 domains. I wanna set 'config.action_mailer.default_url_options = { :host =>' with the domain that users are ...
0
votes
0answers
256 views

Rails Sendmail Production Server configuration Issue

I am trying to use actionmailer with sendmail but I don't know why it isn't working. This is the error I got from production.log Sent mail to hackerkiba@gmail.com (19ms) Completed 500 ...
1
vote
1answer
633 views

Rails 3.0, ActionMailer delivery not working, no error message displayed

I'd like to play around with sending mail from Rails in a development environment. My message is getting rendered (I can see it in the terminal I'm running rails console in). In config/development.rb ...
1
vote
0answers
64 views

how to define a host with https in action_mailer.default_url_options

ActionMailer provides a way to define the host to use with resource helpers: config.action_mailer.default_url_options = { :host => "example.com" } I can't find a way to force this to https.
1
vote
1answer
889 views

Where is the best place load a YAML application config file?

I have setup my application configuration for my rails 3.1 application as described here by Ryan Bates. Problem is I want to use the config in my environment file for username/password for ...
6
votes
2answers
2k views

ActionMailer settings incorrectly differing between development and production

The Error I've got my ActionMailer setup and working perfectly in development. I can call UserMailer.welcome(user).deliver, and the email reaches its destination. However, when I push my code into ...