class Mail::Message
def bcc( val = nil )
mail.bcc << 'ada@test.lindsaar.net'
mail.bcc 'Mikel
Example:
object.
Additionally, you can append new addresses to the returned Array like
mail.bcc #=> ['mikel@test.lindsaar.net']
mail.bcc 'Mikel
Example:
Also allows you to set the value by passing a value as a parameter
mail.bcc #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net']
mail.bcc = 'Mikel
mail.bcc #=> ['mikel@test.lindsaar.net']
mail.bcc = 'Mikel
Example:
address specs.
Returns the Bcc value of the mail object as an array of strings of
def bcc( val = nil ) default :bcc, val end