Mailmodel ========= The Mailmodel plugin provides a mechanism to send a notification whenever an ActiveRecord model is saved. This is useful if you want to quickly set up notifications for a site to handle things like new comments, new users, or whatever, rather than having to hand-craft a message for each one. Think of it as scaffolding for email notifications. == Usage Specify the email sender/destination: Mailmodel::Modelmailer.sender_address = %("Squeezed Notifications" ) Mailmodel::Modelmailer.destination_address = %w(beebop@dedasys.com) In models that you want notifications for, do this: after_save :mail_model Copyright (c) 2007 David N. Welton , released under the same terms as Ruby on Rails.