From 42fde69cd3cfaef8debaba922f51afb2c9a481d5 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Sat, 7 Jun 2025 01:29:52 -0300 Subject: [PATCH] Reintroduce Postmark endpoint configuration with updated request body --- endpoints/[POST] postmark.bru | 11 ----------- endpoints/postmark.bru | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 11 deletions(-) delete mode 100644 endpoints/[POST] postmark.bru create mode 100644 endpoints/postmark.bru diff --git a/endpoints/[POST] postmark.bru b/endpoints/[POST] postmark.bru deleted file mode 100644 index e0a90d1..0000000 --- a/endpoints/[POST] postmark.bru +++ /dev/null @@ -1,11 +0,0 @@ -meta { - name: [POST] postmark - type: http - seq: 2 -} - -post { - url: https://inbox-negotiator.vercel.app/api/postmark - body: none - auth: none -} diff --git a/endpoints/postmark.bru b/endpoints/postmark.bru new file mode 100644 index 0000000..de35350 --- /dev/null +++ b/endpoints/postmark.bru @@ -0,0 +1,22 @@ +meta { + name: /api/postmark (localhost:4321) + type: http + seq: 2 +} + +post { + url: http://localhost:4321/api/postmark + body: json + auth: none +} + +body:json { + { + "TextBody": "Dear customer, you owe $1,250.50 to CreditPlus for your January utility bills. Please pay by 2025-06-15 to avoid penalties.", + "FromFull": { + "Email": "billing@creditplus.com", + "Name": "CreditPlus Billing Department" + }, + "Subject": "Outstanding Utility Bill Payment Due" + } +}