Change From headers in ActionMailer

Hi All,

Is there a way to change the "From" mail header in ActionMailer? Here's how my simple ActionMailer class look like:

class Notifier < ActionMailer::Base

  def contact_notification(person, email, message)     recipients "my_email@domain.com"     from email     subject "Message from domain.com"     body message   end end

Ideally I want the output to look like this: "user_name <no- reply@domain.com>"

Many thanks in advance !

Gr.

- Jermaine