I have a Rails 3 application and I use Devise to authenticate users. How to specify an SMTP server for the entire development system?
I entered the following in /config/environments/development.rb(for Apache2 set to 8080)
config.action_mailer.default_url_options = { :host => 'mydomain.com:8080' }
Any ideas on how to get outgoing mail to work with Devise and Rails 3?
ruby-on-rails devise actionmailer
webo
source share