I've installed the mail gem to simply send a confirmation email!! when a new user registers and am going through hell trying to find out why this isn't working. My user registration works fine. sign up page fine. just cant get the emailer. i dont want to use devise I want to use this mail gem. is there any hope?

I script/generate mailer user_mailer and it will create:

script/generate mailer user_mailer

Use Gem::source_index.
  exists  app/models/
  create  app/views/user_mailer
  exists  test/unit/
  exists  test/fixtures/user_mailer
  create  app/models/user_mailer.rb
  identical  test/unit/user_mailer_test.rb

and I'll get these warning msgs which I read are nothing and not to worry about them.

/usr/local/rvm/gems/ruby-1.9.2-p180/gems/rails-2.3.10/lib/rails_generator /lookup.rb:212:Warning: Gem::cache is deprecated and will be removed on or after August 2011. Use Gem::source_index. /usr/local/rvm/gems/ruby-1.9.2-p180/gems/rails-2.3.10/lib/rails_generator/lookup.rb:234:Warning: Gem::cache is deprecated and will be removed on or after August 2011.

this is suppose to create /app/mailers but its only creating the above. no mailers folder.. nothing :(

still no luck. I even manually created the app/mailers folder and the files needed within but then I get an undefined UserMailer error when I try to run the site.

Gemfile

gem "rake" ,"0.8.7"
gem "rails", "2.3.10"

gem "mail", "2.1.3"
gem "fastercsv"
gem "haml"

Gemfile.lock

GEM
  remote: http://rubygems.org/
  specs:

mail (2.1.3)
  activesupport (>= 2.3.4)
  mime-types

DEPENDENCIES
  factory_girl
  fastercsv
  formtastic (= 0.9.7)
  haml
  hirb
  i18n
  inherited_resources (= 1.0.6)
  mail (= 2.1.3)
  etc.

Please can someone tell me what I'm doing wrong? the gem is installed correctly what could the problem be!?

I'm also following these links to a tee and they say its so easy blah blah.. yah right:

http://railscasts.com/episodes/206-action-mailer-in-rails-3

http://asciicasts.com/episodes/206-action-mailer-in-rails-3

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.