misaf/laravel-email-webhooks-resend

Resend email webhook integration for Laravel.

Installs: 1

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/misaf/laravel-email-webhooks-resend

v1.0.0 2026-01-27 12:29 UTC

This package is auto-updated.

Last update: 2026-01-27 21:54:45 UTC


README

Extension package to resend email webhook events in Laravel applications.

Features

  • Resend email webhook events easily.
  • Built on top of laravel-email-webhooks.
  • Works with Spatie Laravel Webhook Client.
  • Fully tested with Pest and Orchestra Testbench.

Requirements

  • PHP ^8.3
  • Laravel 10+
  • misaf/laravel-email-webhooks ^1.0.0
  • spatie/laravel-webhook-client ^3.4.3

Installation

composer require misaf/laravel-email-webhooks-resend
Usage
Publish the service provider (if you need customization):

bash
Copy code
php artisan vendor:publish --provider="Misaf\EmailWebhooksResend\Providers\EmailWebhooksResendServiceProvider"
Resend webhook events:

php
Copy code
use Misaf\EmailWebhooksResend\Facades\EmailWebhooksResend;

EmailWebhooksResend::resend('event-name', $payload);
Integrate with your webhook client:

php
Copy code
use Spatie\WebhookClient\Models\WebhookCall;

WebhookCall::create([
    'name' => 'email_event',
    'payload' => $payload,
]);
Testing
The package uses Pest and Orchestra Testbench:

bash
Copy code
composer test
Contributing
All contributions are welcome. Feel free to submit pull requests or open issues.

License
This package is open-sourced under the MIT license.