How to I tell Devise to use https (not http) for all the account confirmation and password reminder etc links?
[note: I\'m not looking for a solution to redirect all
default_url_options accepts the same hash parameters as url_for. So you should be able to do this:
default_url_options
config.action_mailer.default_url_options = { :protocol => 'https', :host => 'app1.mydomain.com' }