I'm on Rails 3.0, and I pretty much followed the steps on the API to define a mailer by doing
rails generate mailer Notifier
Within my controller, I call Notifier.mytemplate(...)
When I go to the page, I see an error:
uninitialized constant MyController::Notifier
Seems like something is not getting initialized correctly, and it's not realizing that Notifier is already defined in app/mailers/notifier.rb
rails cand I get an error saying that I'm missing readline. Looks like my Ruby environment might be messed up, reinstalling. Why does my RVM install command look likervmsudo rvm install 1.9.2 --with-zlib-dir=$rvm_path/usr --with-openssl-dir=$rvm_path/usr --with-readline-dir=$rvm_path/usr– jontsai Nov 2 '11 at 23:03