usevalid-email/php-sdk
最新稳定版本:1.0
Composer 安装命令:
composer require usevalid-email/php-sdk
包简介
Validate Your Emails with Confidence
README 文档
README
Validate Your Emails with Confidence
Installation
You can install the package via composer:
composer require usevalid-email/php-sdk
Usage
Initialization
use UseValidEmail\Sdk; $token = 'your-access-token'; $sdk = new Sdk($token);
Validate Email
try { $email = 'example@example.com'; $response = $sdk->emailValidator->validate($email); print_r($response->toArray()); } catch (Exception $e) { // Handle exception }
Using Helper Function
try { $email = 'example@example.com'; $response = validateEmail($email); print_r($response->toArray()); } catch (Exception $e) { // Handle exception }
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 360
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-02-01