instance method
bcc_addrs
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
bcc_addrs( default = nil )
Return a TMail::Addresses instance for each entry in the “Bcc:” field of the mail object header.
If the “Bcc:” field does not exist, will return nil by default or the value you pass as the optional parameter.
Example:
mail = TMail::Mail.new mail.bcc_addrs #=> nil mail.bcc_addrs([]) #=> [] mail.bcc = "Mikel <mikel@me.org>, another Mikel <mikel@you.org>" mail.bcc_addrs #=> [#<TMail::Address mikel@me.org>, #<TMail::Address mikel@you.org>]
Parameters
-
defaultopt = nil
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 210
def bcc_addrs( default = nil )
if h = @header['bcc']
h.addrs
else
default
end
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb line 210
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail