Hello, I have the following in an observer:

    UserMailer.delay.msg_notification(record)

In user_mailer.rb
class UserMailer < ActionMailer::Base
...
def msg_notification(record)
    mail(
          :to => "#{record.user.email}",
          :subject => "Notification"
          )
  end
..
end

But this errors with:

NoMethodError (undefined method `delay' for UserMailer:Class):

Any ideas? thanks

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to