Unable to set the replay-to in ActionMailer

That very document states:

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

Ah - what smtp server are you using

Jeff Emminger wrote:

Ah - what smtp server are you using

On Feb 24, 11:26�am, Fernando Perez <rails-mailing-l...@andreas-s.net>

I use Citadel (www.citadel.org).

I use Citadel (www.citadel.org). --

I would check with them to see why they are overwriting the Reply-to header.

Jeff Emminger wrote:

I use Citadel (www.citadel.org). --

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.