Returns who the email cc’d as an Array of email addresses as opposed to an Array of TMail::Address objects which is what Mail#to_addrs returns
Example:
mail = TMail::Mail.new mail.cc = "Mikel <mikel@me.org>, another Mikel <mikel@you.org>" mail.cc #=> ["mikel@me.org", "mikel@you.org"]
Source Code
# File action_mailer/vendor/tmail-1.2.2/tmail/interface.rb, line 280 def cc( default = nil ) addrs2specs(cc_addrs(nil)) || default end
<code/>and<pre/>for code samples.