如何定义回复地址?

我如何定义一个不同于以下地址的回复地址? 这甚至可能吗?

两种方式:

 class Notifications < ActionMailer::Base default :from => 'your_app@your_domain.com', :reply_to => 'some_other_address@your_domain.com' end 

要么:

 class Contacts < ActionMailer::Base def new_contact mail( :to => 'somebody@some_domain.com', :from => 'your_app@your_domain.com', :reply_to => 'someone_else@some_other_domain.com') end end 

或者你可以混合使用这两种方法。 我相信有更多的方法来做到这一点。