setEmail() public method

Setter to allow the setting of the email address
public setEmail ( string $email )
$email string The email address associated with the Cloudflare account
Example #1
0
 public function testSetEmail()
 {
     $api = new Api();
     $api->setEmail('*****@*****.**');
     $this->assertEquals('*****@*****.**', $api->email);
 }