shivsingh7150 Posted September 18, 2019 Share Posted September 18, 2019 Hello, i am want to know that what client email address is verified or not. Note: i am want to check by custom php template not by smarty. right now i am using Local API method but its dont return that user mail address is verified. <?php use WHMCS\ClientArea; use WHMCS\Database\Capsule; define('CLIENTAREA', true); require __DIR__ . '/init.php'; $ca = new ClientArea(); $user_id = $_SESSION['uid']; $command = 'GetClientsDetails'; $postData = array( 'clientid' => $user_id, 'stats' => true, ); $results = localAPI($command, $postData); echo '<pre>'; print_r($results); echo '</pre>'; if any one can help then it will be really very help full. Thanks 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.