예제 #1
0
<?php

require dirname(__DIR__) . '/../vendor/autoload.php';
use keika299\ConohaAPI\Conoha;
$client = new Conoha(array('username' => 'ConoHa', 'password' => 'paSSword123456#$%', 'tenantId' => '487727e3921d44e3bfe7ebb337bf085e'));
$mailService = $client->mailService();
$mailService->deleteService('Service UUID');
예제 #2
0
 public function testMailService()
 {
     $this->assertInstanceOf('\\keika299\\ConohaAPI\\Mail\\Service', $this->client->mailService());
 }