2009/5/20 schroedi <[email protected]>:
>
> class Athlet < ActiveRecord::Base
>  after_create :notify_user
>  def notify_user
>  AthletMailer.deliver_welcome_email(@athlet)
>  end
> end
>
class Athlet < ActiveRecord::Base
  after_create :notify_user
  def notify_user
    AthletMailer.deliver_welcome_email(self)
  end
end
_______________________________________________
rubyonrails-ug mailing list
[email protected]
http://mailman.headflash.com/listinfo/rubyonrails-ug

Antwort per Email an