When I first started using Rails, actionmailer set email header values by assigning values to instance variables within a model method. There were some specific instance variables such as 'subject', 'from', etc. Header values for which there was no specific instance variable assigned could be set using the @headers hash. This hash could be used to set the Reply-To header value.
Somewhere along the line things got changed so that methods were used to set header values instead of instance variables. That's the way things work in the version of Rails that I am currently using (2.3.8). Unfortunately, up until now, I have never had the need to set a Reply-To header in version 2.3.8 of Rails. That is now what I'm trying to do.
Unfortunately, the on-line documentation for actionmailer addresses Rails version 3.0 which uses a different methodology.
So, my question is this: Can someone please tell me what I need to do to set the Reply-To header value in version 2.3.8 of Rails?
Thanks for any input.
... doug