instance method
cc=
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
cc=( *strs )
Destructively sets the “Cc:” field to the passed array of strings (which should be valid email addresses)
Example:
mail = TMail::Mail.new mail.cc = ["mikel@abc.com", "Mikel <mikel@xyz.com>"] mail.cc #=> ["mikel@abc.org", "mikel@xyz.org"] mail['cc'].to_s #=> "mikel@abc.com, Mikel <mikel@xyz.com>"
Parameters
-
strsrest
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 318
def cc=( *strs )
set_string_array_attr 'Cc', strs
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb line 318
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail