I have a mailer that should update a model once an email is delivered (a "notice sent on" field). I don''t want to put this update code in the email creation method of my ActionMailer::Base class because I''d rather have this field updated when the email is _sent_ rather than when it is _created_. Is there a filter such that I could do something like this? delivery_filter :update_deliver_date_field def update_deliver_date_field # update my model end -- Posted via http://www.ruby-forum.com/.