Looking to hire Laravel developers? Try LaraJobs

laravel-zerobounce maintained by sarfrazrizwan

Description
Laravel package for ZeroBounce PHP SDK
Last update
2024/05/23 12:06 (dev-main)
License
Links
Downloads
259

Comments
comments powered by Disqus

Laravel ZeroBounce

Latest Version on Packagist Total Downloads Build Status Quality Score

Introduction

The sarfrazrizwan/laravel-zerobounce package provides an easy way to integrate the ZeroBounce email validation service into your Laravel applications. This package utilizes the official ZeroBounce PHP SDK to ensure reliable and efficient email validation.

Features

  • Easy integration with ZeroBounce email validation API.
  • Seamless configuration through Laravel environment settings.
  • Comprehensive validation results for your email addresses.
  • Supports Laravel 9 and later versions.

Installation

You can install the package via Composer:

composer require sarfrazrizwan/laravel-zerobounce

Configuration

To use this package, you need to set your ZeroBounce API key in your .env file:

ZEROBOUNCE_API_KEY=your_api_key_here

Usage

Here's an example of how to use the ZeroBounce email validation in your Laravel application:

use Sarfrazrizwan\ZeroBounce\Facades\ZeroBounce;

$email = 'example@example.com';
$response = ZeroBounce::validate($email);

if ($response->status === 'valid') {
    echo "The email address is valid.";
} else {
    echo "The email address is invalid.";
}


Validation Rule

The package also includes a custom validation rule real_email that you can use in your Laravel validation logic:


$request->validate([
    'email' => 'required|real_email',
]);

API Reference

For detailed information about the available methods and their usage, please refer to the ZeroBounce PHP SDK documentation.

Contributing

Contributions are welcome! Please submit a pull request or create an issue to contribute to this package.

Conclusion

The sarfrazrizwan/laravel-zerobounce package simplifies the integration of ZeroBounce email validation into your Laravel applications, ensuring that you can easily validate email addresses with minimal configuration. Get started today to enhance your email data quality!