Skip to content

Commit db8d5ce

Browse files
committed
Fix bug
1 parent 78fdf01 commit db8d5ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Listeners/FormSubmittedListener.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ public function handle(FormSubmitted $event)
6767
'email' => $email,
6868
])->render();
6969

70-
$response = Http::withHeaders(['apikey' => $apiKey])
71-
->withBody($content, 'text/plain')
70+
$response = Http::withBody($content, 'text/plain')
7271
->post('https://spamcheck.postmarkapp.com/filter', [
7372
'email' => $body,
7473
'options' => 'short',

0 commit comments

Comments
 (0)