Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to setup a simple mailer in rails 3.1.

I have the following code in my mailer...

class Notify < ActionMailer::Base

  default :from => "signup@raceton.com"

  def send
    @email = email
    @ip = ip
    mail(:to => "test@test.com", :subject => "#{email} just signed up")
  end

end

Then in my controller I have...

Notify.send(params[:email], ip).deliver

For some reason that I can't work out when that line is called in my controller I get the following error...

undefined method `*string I passed in*' for Notify:Class

Any ideas what I'm doing wrong here?

share|improve this question

1 Answer

up vote 1 down vote accepted

send() is already defined by Ruby, and it is used to pass messages around.

So, to ruby it looks like you are trying to call a method.

User.first.send(:name)

is the same thing as calling

User.first.name

Just rename your method.

share|improve this answer
Thank you! That fixed it. – Jon Dec 15 '11 at 22:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.