Bogardo\Mailgun\Mail\Message::bcc PHP Method

bcc() public method

Add a blind carbon copy to the message.
public bcc ( string | array $address, string $name = "", array $variables = [] ) : Message
$address string | array
$name string
$variables array
return Message
    public function bcc($address, $name = "", array $variables = [])
    {
        if (!empty($variables)) {
            $this->variables[$address] = $variables;
        }
        $this->messageBuilder->addBccRecipient($address, ['full_name' => $name]);
        return $this;
    }