reply_to - Takes one or more email addresses. These addresses will be listed as the default recipients when replying to your email. Sets the Reply-To: header.
You should be able to like so:
class Notifier < ActionMailer::Base
def signup_notification(recipient)
recipients recipient.email_address_with_name
from "system@example.com"
reply_to "other@example.com"
subject "New account information"
body :account => recipient
end
end
I would check with them to see why they are overwriting the Reply-to
header.
Thanks for putting me on the correct track, I have been able to solve my
problem. Citadel was not formerly allowing me to set the reply_to and
from headers.