File tree 5 files changed +99
-0
lines changed
5 files changed +99
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 5
5
use Illuminate \Http \Request ;
6
6
use Illuminate \Routing \Controller ;
7
7
use Illuminate \Support \Str ;
8
+ use Resend \Laravel \Events \ContactCreated ;
9
+ use Resend \Laravel \Events \ContactDeleted ;
10
+ use Resend \Laravel \Events \ContactUpdated ;
8
11
use Resend \Laravel \Events \EmailBounced ;
9
12
use Resend \Laravel \Events \EmailClicked ;
10
13
use Resend \Laravel \Events \EmailComplained ;
@@ -49,6 +52,36 @@ public function handleWebhook(Request $request): Response
49
52
return $ this ->missingMethod ($ payload );
50
53
}
51
54
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
+
52
85
/**
53
86
* Handle email bounced event.
54
87
*/
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
use Illuminate \Support \Facades \Event ;
4
+ use Resend \Laravel \Events \ContactCreated ;
5
+ use Resend \Laravel \Events \ContactDeleted ;
6
+ use Resend \Laravel \Events \ContactUpdated ;
4
7
use Resend \Laravel \Events \EmailBounced ;
5
8
use Resend \Laravel \Events \EmailClicked ;
6
9
use Resend \Laravel \Events \EmailComplained ;
26
29
expect ($ response ->getStatusCode ())->toBe (200 )
27
30
->and ($ response ->getContent ())->toBe ('Webhook handled ' );
28
31
})->with ([
32
+ ['contact.created ' , ContactCreated::class],
33
+ ['contact.deleted ' , ContactDeleted::class],
34
+ ['contact.updated ' , ContactUpdated::class],
29
35
['email.bounced ' , EmailBounced::class],
30
36
['email.clicked ' , EmailClicked::class],
31
37
['email.complained ' , EmailComplained::class],
You can’t perform that action at this time.
0 commit comments