Skip to content

Commit 74a5a00

Browse files
authored
feat: Add support for Contact Webhook Events (#63)
1 parent 23aed22 commit 74a5a00

File tree

5 files changed

+99
-0
lines changed

5 files changed

+99
-0
lines changed

src/Events/ContactCreated.php

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Resend\Laravel\Events;
4+
5+
use Illuminate\Foundation\Events\Dispatchable;
6+
use Illuminate\Queue\SerializesModels;
7+
8+
class ContactCreated
9+
{
10+
use Dispatchable, SerializesModels;
11+
12+
/**
13+
* Create a new contact created event instance.
14+
*/
15+
public function __construct(
16+
public array $payload
17+
) {
18+
//
19+
}
20+
}

src/Events/ContactDeleted.php

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Resend\Laravel\Events;
4+
5+
use Illuminate\Foundation\Events\Dispatchable;
6+
use Illuminate\Queue\SerializesModels;
7+
8+
class ContactDeleted
9+
{
10+
use Dispatchable, SerializesModels;
11+
12+
/**
13+
* Create a new contact deleted event instance.
14+
*/
15+
public function __construct(
16+
public array $payload
17+
) {
18+
//
19+
}
20+
}

src/Events/ContactUpdated.php

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Resend\Laravel\Events;
4+
5+
use Illuminate\Foundation\Events\Dispatchable;
6+
use Illuminate\Queue\SerializesModels;
7+
8+
class ContactUpdated
9+
{
10+
use Dispatchable, SerializesModels;
11+
12+
/**
13+
* Create a new contact updated event instance.
14+
*/
15+
public function __construct(
16+
public array $payload
17+
) {
18+
//
19+
}
20+
}

src/Http/Controllers/WebhookController.php

+33
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
use Illuminate\Http\Request;
66
use Illuminate\Routing\Controller;
77
use Illuminate\Support\Str;
8+
use Resend\Laravel\Events\ContactCreated;
9+
use Resend\Laravel\Events\ContactDeleted;
10+
use Resend\Laravel\Events\ContactUpdated;
811
use Resend\Laravel\Events\EmailBounced;
912
use Resend\Laravel\Events\EmailClicked;
1013
use Resend\Laravel\Events\EmailComplained;
@@ -49,6 +52,36 @@ public function handleWebhook(Request $request): Response
4952
return $this->missingMethod($payload);
5053
}
5154

55+
/**
56+
* Handle contact created event.
57+
*/
58+
protected function handleContactCreated(array $payload): Response
59+
{
60+
ContactCreated::dispatch($payload);
61+
62+
return $this->successMethod();
63+
}
64+
65+
/**
66+
* Handle contact deleted event.
67+
*/
68+
protected function handleContactDeleted(array $payload): Response
69+
{
70+
ContactDeleted::dispatch($payload);
71+
72+
return $this->successMethod();
73+
}
74+
75+
/**
76+
* Handle contact updated event.
77+
*/
78+
protected function handleContactUpdated(array $payload): Response
79+
{
80+
ContactUpdated::dispatch($payload);
81+
82+
return $this->successMethod();
83+
}
84+
5285
/**
5386
* Handle email bounced event.
5487
*/

tests/Http/Controllers/WebhookController.php

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22

33
use Illuminate\Support\Facades\Event;
4+
use Resend\Laravel\Events\ContactCreated;
5+
use Resend\Laravel\Events\ContactDeleted;
6+
use Resend\Laravel\Events\ContactUpdated;
47
use Resend\Laravel\Events\EmailBounced;
58
use Resend\Laravel\Events\EmailClicked;
69
use Resend\Laravel\Events\EmailComplained;
@@ -26,6 +29,9 @@
2629
expect($response->getStatusCode())->toBe(200)
2730
->and($response->getContent())->toBe('Webhook handled');
2831
})->with([
32+
['contact.created', ContactCreated::class],
33+
['contact.deleted', ContactDeleted::class],
34+
['contact.updated', ContactUpdated::class],
2935
['email.bounced', EmailBounced::class],
3036
['email.clicked', EmailClicked::class],
3137
['email.complained', EmailComplained::class],

0 commit comments

Comments
 (0)