Email when validation fails

Hi,

Say I want to send an email to someone every time a validation fails
in any model. What would be the best way of doing that?

Thanks,
Joe

On 6/9/06, Joe Van D. [email protected] wrote:

http://lists.rubyonrails.org/mailman/listinfo/rails

A good old ActionMailer class. A good name for it would be
SystemNotifier.

I just set up something like this yesterday. The RoR wiki has some
great examples of how to set up your mailer.

I think the valid? function is your answer.

http://api.rubyonrails.com/classes/ActiveRecord/Validations.html#M000801

Roland