Hello,

i have the problem that i want to set the return-path to the envelope
of outgoing emails so bounces can be handled. I tried to set the
header as followed in my mailer class:

  def newsletter
    subject       'subject'
    reply_to      'donotre...@domain.com'
    from          'f...@domain.com'
    recipients   't...@otherdomain.com'
    sent_on       Time.now
    body          :body => 'content'
    headers       'return-path' => 'donotre...@domain.com'
  end

However, in the outgoing email the return path is automatically set to
'f...@domain.com'

I am using Rails 2.3.3 and Postfix 2.3

can anyone point me to the correct setting to set the return-path?

Greets
-act


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to