Is there a better way to do this in Ruby/Rails

Folks,

I need to prepend the rails environment to the subject of all outgoing
messages in Rails. I did little dig around and find out that the real
message is created in
“vendor/rails/actionmailer/lib/action_mailer/base.rb” on line 467

def create_mail
m = TMail::Mail.new

m.subject, = quote_any_if_necessary(charset, “#{RAILS_ENV} -
#{subject}”)


end

I have hacked this for now to add the RAILS ENV to the subject. But is
there a clean way to do this. Like doing something in the notifier
model override something in rails.

AJAY A

I finally figued this out.

I posted the solution here.
http://www.ajay.ws/2006/12/8/customized-subject-in-actionmailer-emails-based-on-rails-environment

AJAY