instance method
references=
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
references=( *strs )
Destructively sets the value of the “References:” field of an email.
Accepts an array of strings of message IDs
Example:
mail = TMail::Mail.new mail.references = ["<348F04F142D69C21-291E56D292BC@xxxx.net>"] mail.references #=> ["<348F04F142D69C21-291E56D292BC@xxxx.net>"]
Parameters
-
strsrest
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 673
def references=( *strs )
set_string_array_attr 'References', strs
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb line 673
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail