From 19ae34c7e4481ee39478f03e3b4cddb9783fea37 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Sat, 7 Jun 2025 01:30:56 -0300 Subject: [PATCH] Add Postmark endpoint configuration with request body --- endpoints/postmark (vercel).bru | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 endpoints/postmark (vercel).bru diff --git a/endpoints/postmark (vercel).bru b/endpoints/postmark (vercel).bru new file mode 100644 index 0000000..0c75e18 --- /dev/null +++ b/endpoints/postmark (vercel).bru @@ -0,0 +1,22 @@ +meta { + name: /api/postmark (vercel) + type: http + seq: 2 +} + +post { + url: https://inbox-negotiator.vercel.app/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" + } +}