instance method
subject=
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
subject=( str )
Destructively sets the passed string as the subject of the mail message.
Example
mail = TMail::Mail.new mail.subject #=> "This subject" mail.subject = "Another subject" mail.subject #=> "Another subject"
Parameters
-
strreq
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 567
def subject=( str )
set_string_attr 'Subject', str
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb line 567
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail