instance method
error_reply_addresses
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
error_reply_addresses( default = nil )
Returns the “sender” field as an array -> useful to find out who to send an error email to.
Parameters
-
defaultopt = nil
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb, line 1086
def error_reply_addresses( default = nil )
if s = sender(nil)
[s]
else
from_addrs(default)
end
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb line 1086
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail