Viewing HTML E-Mails

Hi All,

Quick question, Is it possible to view ActionMailer HTML e-mails in a browser? Or somehow view them without having to actually send out an email?

Thanks in advance! Jordan

this is what I use:

def display_email     email = MyActionMailerClassName.create_my_email(@some_required_object)     render(:text => "<pre>" + email.body + "</pre>") end

Mike