luya\components\Mail::bccAddress PHP Method

bccAddress() public method

Add a single BCC address with optional name
public bccAddress ( string $email, string $name = null ) : Mail
$email string The email address e.g. [email protected]
$name string The name for the address e.g. John Doe
return Mail
    public function bccAddress($email, $name = null)
    {
        $this->getMailer()->addBCC($email, empty($name) ? $email : $name);
        return $this;
    }